home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / topware / pspad / pspad450inst_cz.exe / {app} / Context / PHP.def < prev    next >
Text File  |  2005-09-12  |  530KB  |  13,608 lines

  1. ; Tento soubor obsahuje makra programu PSPad pro PHP
  2. ;
  3. ;; PSPad code template for PHP
  4. ;; Author: Krystof Slaby
  5. ;; E-mail: krystof.slaby@seznam.cz
  6. ;; Update: $LastChangedDate: 2003-12-08 00:06:21 +0100 (Mon, 08 Dec 2003) $
  7. ;; Revision: $LastChangedRevision: 54 $
  8. ;
  9. ; User-defined templates patri na konec souboru.
  10. ;
  11. ; VERSION 1
  12. ; autor: Frantisek Blaha  F.Blaha@WorldOnline.cz
  13. ; podklady ziskany z puvodniho PHP manualu vydaneho Official PHP Documentation Group dne 2.9.2001
  14. ; posledni revize: 23.9.2001
  15. ;
  16. ; VERSION 1.1
  17. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  18. ; pridano: control structures, reserved words, declarations
  19. ; datum modifikace: 26.1.2003
  20. ; TODO: refine due to last php manual version
  21. ;
  22. ; VERSION 1.2
  23. ; Karel Pavelka  webjob@seznam.cz
  24. ; datum modifikace: 11.5.2003
  25. ; dalsi preklad a doplneni funkci pro MySQL z manualu PHP
  26. ;
  27. ; VERSION 1.3
  28. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  29. ; datum: 2003-06-30
  30. ; popis:
  31. ;     seznam funkci podle posledniho php manualu (generuje se z xml verze php reference manual)
  32. ;     PEAR coding standards compliant
  33. ;     u funkci odstraneny stredniky
  34. ;
  35. ; VERSION 1.4
  36. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  37. ; datum: 2003-11-24
  38. ; popis:
  39. ;     seznam funkci podle posledniho php manualu
  40. ;     nektere control structures jsou nyni interaktivni
  41. ;
  42. ;
  43. [Macro definition]
  44. %name%=@C name:,,,,
  45. %description%=@C description:,,,,
  46. %param1%=@C parameter:,,,,
  47. %param2%=@C parameter:,", ",,,
  48. %param3%=@C parameter:,", ",,,
  49. %param4%=@C parameter:,", ",,,
  50. %param5%=@C parameter:,", ",,,
  51. %extends%=@C extends:,,,,
  52. %type%=@C type:,,,mixed;boolean;number;integer;float;string;array;object;resource;NULL;callback;void,
  53. %return%=@C returns:,,void,mixed;boolean;number;integer;float;string;array;object;resource;NULL;callback;void,
  54. %type1%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  55. %type2%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  56. %type3%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  57. %type4%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  58. %type5%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  59. %sourcefile%=@O file:,,,PHP files (*.php;*.inc)|*.php;*.inc,'
  60. %package%=@C package:,,,,
  61. %access%=@C access:,,public,public;private,
  62. %static%=@K static:,@static
  63. %abstract%=@K abstract:,@abstract
  64. %final%=@K final:,@final
  65. ;
  66. [  |G ned∞litelnß mezera]*Shift+Ctrl+Space
  67.  
  68. ;
  69. ; -----------------------------------------------------------------------------
  70. ; comments
  71. ; -----------------------------------------------------------------------------
  72. [comment | komentß° /* ... */ ]
  73. /*
  74.     º|
  75. */
  76. ;
  77. ;
  78. ; -----------------------------------------------------------------------------
  79. ; (X)HTML text entities
  80. ; -----------------------------------------------------------------------------
  81. [  | ned∞litelnß mezera]*Ctrl+Shift+Space
  82.  
  83. [& | ampersand]
  84. &
  85. [® | registered]
  86. ®
  87. [© | copyright]
  88. ©
  89. [> | znak v∞tÜφ ne₧ ">"]
  90. >
  91. [< | znak manÜφ ne₧ "<"]
  92. <
  93. [" | uvozovky]
  94. "
  95. [' | apostrof]
  96. '
  97. [br | linebreak]*Ctrl+Enter
  98. <br />
  99. ;
  100. ;
  101. ; -----------------------------------------------------------------------------
  102. ; control structures
  103. ; -----------------------------------------------------------------------------
  104. [php | php escaping PI <?php ... ?>]
  105. <?php
  106.     º|
  107. ?>
  108. [if | if statement]
  109. if (|) {
  110.     º
  111. }
  112. [elseif | elseif statement]
  113. elseif (|) {
  114.     º
  115. }
  116. [else | else statement]
  117. else {
  118.     º|
  119. }
  120. [while | while statement]
  121. while (|) {
  122.     º
  123. }
  124. [dowhile | do .. while statement]
  125. do {
  126.     º|
  127. } while ();
  128. [for | for statement]
  129. for (|; ; ) {
  130.     º
  131. }
  132. [foreach | foreach statement]
  133. foreach (| as $key=>$value) {
  134.     º
  135. }
  136. [break | break statement]
  137. break;
  138. [continue | continue statement]
  139. continue;
  140. [switch | switch statement]
  141. switch (|) {
  142. default:
  143.     º
  144.     break;
  145. }
  146. [case | switch case statement]
  147. case |:
  148.     break;
  149. [declare | declare statement]
  150. declare (ticks=|) {
  151.     º
  152. }
  153. [return | return statement]
  154. return |;
  155. [require | require statement]
  156. require %sourcefile%|;
  157. [include | include statement]
  158. include %sourcefile%|;
  159. [require_once | require_once statement]
  160. require_once %sourcefile%|;
  161. [include_once | include_once statement]
  162. include_once %sourcefile%|;
  163. [function | function declaration]*Ctrl+Alt+Shift+F
  164. function %name%(%param1%%param2%%param3%%param4%%param5%)
  165. { // BEGIN function %name%
  166.     º|
  167. } // END function %name%
  168. [class | class declaration]
  169. class %name%
  170. { // BEGIN class %name%
  171.     // variables
  172.     var $|;
  173.  
  174.     // constructor
  175.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  176.     { // BEGIN constructor
  177.         º
  178.     } // END constructor
  179. } // END class %name%
  180.  
  181. [class_extends | extending class declaration]*Ctrl+Alt+Shift+C
  182. class %name% extends %extends%
  183. {
  184.     // variables
  185.     var $|;
  186.  
  187.     // constructor
  188.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  189.     { // BEGIN constructor
  190.         º
  191.         return $this->%extends%(%param1%%param2%%param3%%param4%%param5%);
  192.     } // END constructor
  193. } // END class %name%
  194.  
  195. [method | method declaration]*Ctrl+Alt+Shift+M
  196. function %name%(%param1%%param2%%param3%%param4%%param5%)
  197. { // BEGIN method %name%
  198.     º|
  199. } // END method %name%
  200. ;
  201. ;
  202. ; -----------------------------------------------------------------------------
  203. ; PEAR compliant declarations
  204. ; -----------------------------------------------------------------------------
  205. [class_PEAR | class declaration PEAR compliant]
  206. // =============================================================================
  207. /**
  208.  * Singleline description of class %name%.
  209.  *
  210.  * Multi line
  211.  * description
  212.  * of class %name%.
  213.  *
  214.  * @author %FullName% <%Email%>
  215.  * @package %package%
  216.  * @version 0.1
  217.  * %static% %abstract%
  218.  */
  219. class %name% extends %extends%
  220. // =============================================================================
  221. { // BEGIN class %name%
  222.  
  223.     |
  224.  
  225.     // -------------------------------------------------------------------------
  226.     /**
  227.      * Constructor
  228.      *
  229.      * @param %type1% %param1%
  230.      * @param %type2% %param2%
  231.      * @param %type3% %param3%
  232.      * @param %type4% %param4%
  233.      * @param %type5% %param5%
  234.      * @return object %name% new %name% object
  235.      */
  236.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  237.     // -------------------------------------------------------------------------
  238.     { // BEGIN constructor
  239.         return $this->%extends%(%param1%%param2%%param3%%param4%%param5%);
  240.     } // END constructor
  241.  
  242. } // END class
  243.  
  244. [method_PEAR | method declaration PEAR compliant]
  245. // -------------------------------------------------------------------------
  246. /**
  247.  * Single line description of method %name%.
  248.  *
  249.  * Multi line
  250.  * description
  251.  * of method %name%.
  252.  *
  253.  * @param %type1% %param1%
  254.  * @param %type2% %param2%
  255.  * @param %type3% %param3%
  256.  * @param %type4% %param4%
  257.  * @param %type5% %param5%
  258.  * @return %return%
  259.  * %static% %abstract% %final%
  260.  */
  261. function %name%(%param1%%param2%%param3%%param4%%param5%)
  262. // -------------------------------------------------------------------------
  263. { // BEGIN method %name%
  264.     |
  265. } // END method %name%
  266.  
  267. [function_PEAR | function declaration PEAR compliant]
  268. // -------------------------------------------------------------------------
  269. /**
  270.  * Single line description of function %name%.
  271.  *
  272.  * Multi line
  273.  * description
  274.  * of function %name%.
  275.  *
  276.  * @param %type1% %param1%
  277.  * @param %type2% %param2%
  278.  * @param %type3% %param3%
  279.  * @param %type4% %param4%
  280.  * @param %type5% %param5%
  281.  * @return %return%
  282.  */
  283. function %name%(%param1%%param2%%param3%%param4%%param5%)
  284. // -------------------------------------------------------------------------
  285. { // BEGIN function %name%
  286.     |
  287. } // END function %name%
  288.  
  289. [variable_PEAR | variable declaration PEAR compliant]
  290. /**
  291.  * variable %name%
  292.  * @var %type% %description%|
  293.  */
  294. var $%name%;
  295. ;
  296. ;
  297. ; -----------------------------------------------------------------------------
  298. ; miscelanous functions and pseudo-functions
  299. ; -----------------------------------------------------------------------------
  300. [connection_aborted | Returns TRUE if client disconnected]
  301. connection_aborted()|
  302. [connection_status | Returns connection status bitfield]
  303. connection_status()|
  304. [constant | Returns the value of a constant]
  305. constant(|string name)
  306. [define | Defines a named constant]
  307. define(|string name, mixed value [, bool case_insensitive])
  308. [defined | Checks whether a given named constant exists]
  309. defined(|string name)
  310. [die | Output a message and terminate the current script]
  311. die(|)
  312. [eval | Evaluate a string as PHP code]
  313. eval(|string code_str)
  314. [exit | Output a message and terminate the current script]
  315. exit(|int/string status)
  316. [get_browser | Tells what the user's browser is capable of]
  317. get_browser(|[string user_agent])
  318. [highlight_file | Syntax highlighting of a file]
  319. highlight_file(|string filename [, bool return])
  320. [highlight_string | Syntax highlighting of a string]
  321. highlight_string(|string str [, bool return])
  322. [ignore_user_abort | Set whether a client disconnect should abort script execution]
  323. ignore_user_abort(|[int setting])
  324. [pack | Pack data into binary string]
  325. pack(|string format [, mixed args])
  326. [show_source | Syntax highlighting of a file]
  327. show_source(|string filename [, bool return])
  328. [sleep | Delay execution]
  329. sleep(|int seconds)
  330. [uniqid | Generate a unique ID]
  331. uniqid(|string prefix [, bool lcg])
  332. [unpack | Unpack data from binary string]
  333. unpack(|string format, string data)
  334. [usleep | Delay execution in microseconds]
  335. usleep(|int micro_seconds)
  336. [echo | Outputs all arguments]*Ctrl+Alt+Shift+E
  337. echo º|;
  338. [print | Outputs argument]*Ctrl+Alt+Shift+P
  339. print º|;
  340. ;
  341. ;
  342. ; -----------------------------------------------------------------------------
  343. ; functions
  344. ; -----------------------------------------------------------------------------
  345. ;; -----------------------------------------------------------------------------
  346. ; Apache - Apache-specific Functions
  347. ; -----------------------------------------------------------------------------
  348. [apache_child_terminate | Terminate apache process after this request, returns bool]
  349. apache_child_terminate()|
  350. [apache_get_version | Fetch Apache version, returns string]
  351. apache_get_version()|
  352. [apache_lookup_uri | Perform a partial request for the specified URI and return all info about it, returns object]
  353. apache_lookup_uri(|string filename)
  354. [apache_note | Get and set apache request notes, returns string]
  355. apache_note(|string note_name, [string note_value])
  356. [apache_request_headers | Fetch all HTTP request headers, returns array]
  357. apache_request_headers()|
  358. [apache_response_headers | Fetch all HTTP response headers, returns array]
  359. apache_response_headers()|
  360. [apache_setenv | Set an Apache subprocess_env variable, returns int]
  361. apache_setenv(|string variable, string value, [bool walk_to_top])
  362. [ascii2ebcdic | Translate string from ASCII to EBCDIC, returns int]
  363. ascii2ebcdic(|string ascii_str)
  364. [ebcdic2ascii | Translate string from EBCDIC to ASCII, returns int]
  365. ebcdic2ascii(|string ebcdic_str)
  366. [getallheaders | Fetch all HTTP request headers, returns array]
  367. getallheaders()|
  368. [virtual | Perform an Apache sub-request, returns int]
  369. virtual(|string filename)
  370. ; -----------------------------------------------------------------------------
  371. ; Arrays - Array Functions
  372. ; -----------------------------------------------------------------------------
  373. [array_change_key_case | Returns an array with all string keys lowercased or uppercased, returns array]
  374. array_change_key_case(|array input, [int case])
  375. [array_chunk | Split an array into chunks, returns array]
  376. array_chunk(|array input, int size, [bool preserve_keys])
  377. [array_combine | Creates an array by using one array for keys and another for its values, returns array]
  378. array_combine(|array keys, array values)
  379. [array_count_values | Counts all the values of an array, returns array]
  380. array_count_values(|array input)
  381. [array_diff_assoc | Computes the difference of arrays with additional index check, returns array]
  382. array_diff_assoc(|array array1, array array2, [array ...])
  383. [array_diff_uassoc | Computes the difference of arrays with additional index check which is performed by a user supplied callback function., returns array]
  384. array_diff_assoc(|array array1, array array2, [array ...], callback key_compare_func)
  385. [array_diff | Computes the difference of arrays, returns array]
  386. array_diff(|array array1, array array2, [array ...])
  387. [array_fill | Fill an array with values, returns array]
  388. array_fill(|int start_index, int num, mixed value)
  389. [array_filter | Filters elements of an array using a callback function, returns array]
  390. array_filter(|array input, [callback callback])
  391. [array_flip | Exchanges all keys with their associated values in an array, returns array]
  392. array_flip(|array trans)
  393. [array_intersect_assoc | Computes the intersection of arrays with additional index check, returns array]
  394. array_intersect_assoc(|array array1, array array2, [array ...])
  395. [array_intersect | Computes the intersection of arrays, returns array]
  396. array_intersect(|array array1, array array2, [array ...])
  397. [array_key_exists | Checks if the given key or index exists in the array, returns bool]
  398. array_key_exists(|mixed key, array search)
  399. [array_keys | Return all the keys of an array, returns array]
  400. array_keys(|array input, [mixed search_value])
  401. [array_map | Applies the callback to the elements of the given arrays, returns array]
  402. array_map(|mixed callback, array arr1, [array ...])
  403. [array_merge_recursive | Merge two or more arrays recursively, returns array]
  404. array_merge_recursive(|array array1, array array2, [array ...])
  405. [array_merge | Merge two or more arrays, returns array]
  406. array_merge(|array array1, array array2, [array ...])
  407. [array_multisort | Sort multiple or multi-dimensional arrays, returns bool]
  408. array_multisort(|array ar1, [mixed arg], [mixed ...], [array ...])
  409. [array_pad | Pad array to the specified length with a value, returns array]
  410. array_pad(|array input, int pad_size, mixed pad_value)
  411. [array_pop | Pop the element off the end of array, returns mixed]
  412. array_pop(|array array)
  413. [array_push | Push one or more elements onto the end of array, returns int]
  414. array_push(|array array, mixed var, [mixed ...])
  415. [array_rand | Pick one or more random entries out of an array, returns mixed]
  416. array_rand(|array input, [int num_req])
  417. [array_reduce | Iteratively reduce the array to a single value using a callback function, returns mixed]
  418. array_reduce(|array input, callback function, [int initial])
  419. [array_reverse | Return an array with elements in reverse order, returns array]
  420. array_reverse(|array array, [bool preserve_keys])
  421. [array_search | Searches the array for a given value and returns the corresponding key if successful, returns mixed]
  422. array_search(|mixed needle, array haystack, [bool strict])
  423. [array_shift | Shift an element off the beginning of array, returns mixed]
  424. array_shift(|array array)
  425. [array_slice | Extract a slice of the array, returns array]
  426. array_slice(|array array, int offset, [int length])
  427. [array_splice | Remove a portion of the array and replace it with something else, returns array]
  428. array_splice(|array input, int offset, [int length], [array replacement])
  429. [array_sum | Calculate the sum of values in an array., returns mixed]
  430. array_sum(|array array)
  431. [array_udiff_assoc | Computes the difference of arrays with additional index check. The data is compared by using a callback function., returns array]
  432. array_udiff_assoc(|array array1, array array2, [array ...], callback data_compare_func)
  433. [array_udiff_uassoc | Computes the difference of arrays with additional index check. The data is compared by using a callback function. The index check is done by a callback function also, returns array]
  434. array_udiff_uassoc(|array array1, array array2, [array ...], callback data_compare_func, callback key_compare_func)
  435. [array_udiff | Computes the difference of arrays by using callback function for data comparison., returns array]
  436. array_udiff(|array array1, array array2, [array ...], callback data_compare_func)
  437. [array_unique | Removes duplicate values from an array, returns array]
  438. array_unique(|array array)
  439. [array_unshift | Prepend one or more elements to the beginning of array, returns int]
  440. array_unshift(|array array, mixed var, [mixed ...])
  441. [array_values | Return all the values of an array, returns array]
  442. array_values(|array input)
  443. [array_walk | Apply a user function to every member of an array, returns bool]
  444. array_walk(|array array, callback function, [mixed userdata])
  445. [array | Create an array, returns array]
  446. array(|[mixed ...])
  447. [arsort | Sort an array in reverse order and maintain index association, returns void]
  448. arsort(|array array, [int sort_flags])
  449. [asort | Sort an array and maintain index association, returns void]
  450. asort(|array array, [int sort_flags])
  451. [compact | Create array containing variables and their values, returns array]
  452. compact(|mixed varname, [mixed ...])
  453. [count | Count elements in a variable, returns int]
  454. count(|mixed var, [int mode])
  455. [current | Return the current element in an array, returns mixed]
  456. current(|array array)
  457. [each | Return the current key and value pair from an array and advance the array cursor, returns array]
  458. each(|array array)
  459. [end | Set the internal pointer of an array to its last element, returns mixed]
  460. end(|array array)
  461. [extract | Import variables into the current symbol table from an array, returns int]
  462. extract(|array var_array, [int extract_type], [string prefix])
  463. [in_array | Checks if a value exists in an array, returns bool]
  464. in_array(|mixed needle, array haystack, [bool strict])
  465. [key | Fetch a key from an associative array, returns mixed]
  466. key(|array array)
  467. [krsort | Sort an array by key in reverse order, returns int]
  468. krsort(|array array, [int sort_flags])
  469. [ksort | Sort an array by key, returns int]
  470. ksort(|array array, [int sort_flags])
  471. [list | Assign variables as if they were an array, returns void]
  472. list(|mixed ...)
  473. [natcasesort | Sort an array using a case insensitive "natural order" algorithm, returns void]
  474. natcasesort(|array array)
  475. [natsort | Sort an array using a "natural order" algorithm, returns void]
  476. natsort(|array array)
  477. [next | Advance the internal array pointer of an array, returns mixed]
  478. next(|array array)
  479. [pos | Get the current element from an array, returns mixed]
  480. pos(|array array)
  481. [prev | Rewind the internal array pointer, returns mixed]
  482. prev(|array array)
  483. [range | Create an array containing a range of elements, returns array]
  484. range(|int low, int high, [int step])
  485. [reset | Set the internal pointer of an array to its first element, returns mixed]
  486. reset(|array array)
  487. [rsort | Sort an array in reverse order, returns void]
  488. rsort(|array array, [int sort_flags])
  489. [shuffle | Shuffle an array, returns void]
  490. shuffle(|array array)
  491. [sizeof | Alias of count]
  492. [sort | Sort an array, returns void]
  493. sort(|array array, [int sort_flags])
  494. [uasort | Sort an array with a user-defined comparison function and maintain index association, returns void]
  495. uasort(|array array, callback cmp_function)
  496. [uksort | Sort an array by keys using a user-defined comparison function, returns void]
  497. uksort(|array array, callback cmp_function)
  498. [usort | Sort an array by values using a user-defined comparison function, returns void]
  499. usort(|array array, callback cmp_function)
  500. ; -----------------------------------------------------------------------------
  501. ; Aspell - Aspell functions [deprecated]
  502. ; -----------------------------------------------------------------------------
  503. [aspell_check_raw | Check a word without changing its case or trying to trim it [deprecated], returns bool]
  504. aspell_check_raw(|int dictionary_link, string word)
  505. [aspell_check | Check a word [deprecated], returns bool]
  506. aspell_check(|int dictionary_link, string word)
  507. [aspell_new | Load a new dictionary [deprecated], returns int]
  508. aspell_new(|string master, [string personal])
  509. [aspell_suggest | Suggest spellings of a word [deprecated], returns array]
  510. aspell_suggest(|int dictionary_link, string word)
  511. ; -----------------------------------------------------------------------------
  512. ; BC math - BCMath Arbitrary Precision Mathematics Functions
  513. ; -----------------------------------------------------------------------------
  514. [bcadd | Add two arbitrary precision numbers, returns string]
  515. bcadd(|string left_operand, string right_operand, [int scale])
  516. [bccomp | Compare two arbitrary precision numbers, returns int]
  517. bccomp(|string left_operand, string right_operand, [int scale])
  518. [bcdiv | Divide two arbitrary precision numbers, returns string]
  519. bcdiv(|string left_operand, string right_operand, [int scale])
  520. [bcmod | Get modulus of an arbitrary precision number, returns string]
  521. bcmod(|string left_operand, string modulus)
  522. [bcmul | Multiply two arbitrary precision number, returns string]
  523. bcmul(|string left_operand, string right_operand, [int scale])
  524. [bcpow | Raise an arbitrary precision number to another, returns string]
  525. bcpow(|string x, int y, [int scale])
  526. [bcpowmod | Raise an arbitrary precision number to another, reduced by a specified modulus., returns string]
  527. bcpowmod(|string x, string y, string modulus, [int scale])
  528. [bcscale | Set default scale parameter for all bc math functions, returns string]
  529. bcscale(|int scale)
  530. [bcsqrt | Get the square root of an arbitrary precision number, returns string]
  531. bcsqrt(|string operand, [int scale])
  532. [bcsub | Subtract one arbitrary precision number from another, returns string]
  533. bcsub(|string left_operand, string right_operand, [int scale])
  534. ; -----------------------------------------------------------------------------
  535. ; Bzip2 - Bzip2 Compression Functions
  536. ; -----------------------------------------------------------------------------
  537. [bzclose | Close a bzip2 file pointer, returns int]
  538. bzclose(|resource bz)
  539. [bzcompress | Compress a string into bzip2 encoded data, returns string]
  540. bzcompress(|string source, [int blocksize], [int workfactor])
  541. [bzdecompress | Decompresses bzip2 encoded data, returns string]
  542. bzdecompress(|string source, [int small])
  543. [bzerrno | Returns a bzip2 error number, returns int]
  544. bzerrno(|resource bz)
  545. [bzerror | Returns the bzip2 error number and error string in an array, returns array]
  546. bzerror(|resource bz)
  547. [bzerrstr | Returns a bzip2 error string, returns string]
  548. bzerrstr(|resource bz)
  549. [bzflush | Force a write of all buffered data, returns int]
  550. bzflush(|resource bz)
  551. [bzopen | Open a bzip2 compressed file, returns resource]
  552. bzopen(|string filename, string mode)
  553. [bzread | Binary safe bzip2 file read, returns string]
  554. bzread(|resource bz, [int length])
  555. [bzwrite | Binary safe bzip2 file write, returns int]
  556. bzwrite(|resource bz, string data, [int length])
  557. ; -----------------------------------------------------------------------------
  558. ; Calendar - Calendar functions
  559. ; -----------------------------------------------------------------------------
  560. [cal_days_in_month | Return the number of days in a month for a given year and calendar, returns int]
  561. cal_days_in_month(|int calendar, int month, int year)
  562. [cal_from_jd | Converts from Julian Day Count to a supported calendar, returns array]
  563. cal_from_jd(|int jd, int calendar)
  564. [cal_info | Returns information about a particular calendar, returns array]
  565. cal_info(|[int calendar])
  566. [cal_to_jd | Converts from a supported calendar to Julian Day Count, returns int]
  567. cal_to_jd(|int calendar, int month, int day, int year)
  568. [easter_date | Get UNIX timestamp for midnight on Easter of a given year, returns int]
  569. easter_date(|[int year])
  570. [easter_days | Get number of days after March 21 on which Easter falls for a given year, returns int]
  571. easter_days(|[int year], [int method])
  572. [FrenchToJD | Converts a date from the French Republican Calendar to a Julian Day Count, returns int]
  573. frenchtojd(|int month, int day, int year)
  574. [GregorianToJD | Converts a Gregorian date to Julian Day Count, returns int]
  575. gregoriantojd(|int month, int day, int year)
  576. [JDDayOfWeek | Returns the day of the week, returns mixed]
  577. jddayofweek(|int julianday, int mode)
  578. [JDMonthName | Returns a month name, returns string]
  579. jdmonthname(|int julianday, int mode)
  580. [JDToFrench | Converts a Julian Day Count to the French Republican Calendar, returns string]
  581. jdtofrench(|int juliandaycount)
  582. [JDToGregorian | Converts Julian Day Count to Gregorian date, returns string]
  583. jdtogregorian(|int julianday)
  584. [jdtojewish | Converts a julian day count to a jewish calendar date, returns string]
  585. jdtojewish(|int juliandaycount, [bool hebrew], [int fl])
  586. [JDToJulian | Converts a Julian Day Count to a Julian Calendar Date, returns string]
  587. jdtojulian(|int julianday)
  588. [jdtounix | Convert Julian Day to UNIX timestamp, returns int]
  589. jdtounix(|int jday)
  590. [JewishToJD | Converts a date in the Jewish Calendar to Julian Day Count, returns int]
  591. jewishtojd(|int month, int day, int year)
  592. [JulianToJD | Converts a Julian Calendar date to Julian Day Count, returns int]
  593. juliantojd(|int month, int day, int year)
  594. [unixtojd | Convert UNIX timestamp to Julian Day, returns int]
  595. unixtojd(|[int timestamp])
  596. ; -----------------------------------------------------------------------------
  597. ; CCVS - CCVS API Functions
  598. ; -----------------------------------------------------------------------------
  599. [ccvs_add | Add data to a transaction, returns string]
  600. ccvs_add(|string session, string invoice, string argtype, string argval)
  601. [ccvs_auth | Perform credit authorization test on a transaction, returns string]
  602. ccvs_auth(|string session, string invoice)
  603. [ccvs_command | Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API, returns string]
  604. ccvs_command(|string session, string type, string argval)
  605. [ccvs_count | Find out how many transactions of a given type are stored in the system, returns int]
  606. ccvs_count(|string session, string type)
  607. [ccvs_delete | Delete a transaction, returns string]
  608. ccvs_delete(|string session, string invoice)
  609. [ccvs_done | Terminate CCVS engine and do cleanup work, returns string]
  610. ccvs_done(|string sess)
  611. [ccvs_init | Initialize CCVS for use, returns string]
  612. ccvs_init(|string name)
  613. [ccvs_lookup | Look up an item of a particular type in the database #, returns string]
  614. ccvs_lookup(|string session, string invoice, int inum)
  615. [ccvs_new | Create a new, blank transaction, returns string]
  616. ccvs_new(|string session, string invoice)
  617. [ccvs_report | Return the status of the background communication process, returns string]
  618. ccvs_report(|string session, string type)
  619. [ccvs_return | Transfer funds from the merchant to the credit card holder, returns string]
  620. ccvs_return(|string session, string invoice)
  621. [ccvs_reverse | Perform a full reversal on an already-processed authorization, returns string]
  622. ccvs_reverse(|string session, string invoice)
  623. [ccvs_sale | Transfer funds from the credit card holder to the merchant, returns string]
  624. ccvs_sale(|string session, string invoice)
  625. [ccvs_status | Check the status of an invoice, returns string]
  626. ccvs_status(|string session, string invoice)
  627. [ccvs_textvalue | Get text return value for previous function call, returns string]
  628. ccvs_textvalue(|string session)
  629. [ccvs_void | Perform a full reversal on a completed transaction, returns string]
  630. ccvs_void(|string session, string invoice)
  631. ; -----------------------------------------------------------------------------
  632. ; COM - COM support functions for Windows
  633. ; -----------------------------------------------------------------------------
  634. [COM | COM class, returns string]
  635. COM::COM(|string module_name, [string server_name], [int codepage])
  636. [VARIANT | VARIANT class, returns string]
  637. VARIANT::VARIANT(|[mixed value], [int type], [int codepage])
  638. [com_addref | Increases the components reference counter., returns void]
  639. com_addref()|
  640. [com_get | Gets the value of a COM Component's property, returns mixed]
  641. com_get(|resource com_object, string property)
  642. [com_invoke | Calls a COM component's method., returns mixed]
  643. com_invoke(|resource com_object, string function_name, [mixed function parameters, ...])
  644. [com_isenum | Grabs an IEnumVariant, returns void]
  645. com_isenum(|object com_module)
  646. [com_load_typelib | Loads a Typelib, returns void]
  647. com_load_typelib(|string typelib_name, [int case_insensitive])
  648. [com_load | Creates a new reference to a COM component, returns string]
  649. com_load(|string module_name, [string server_name], [int codepage])
  650. [com_propget | Alias of com_get]
  651. [com_propput | Alias of com_set]
  652. [com_propset | Alias of com_set]
  653. [com_release | Decreases the components reference counter., returns void]
  654. com_release()|
  655. [com_set | Assigns a value to a COM component's property, returns void]
  656. com_set(|resource com_object, string property, mixed value)
  657. ; -----------------------------------------------------------------------------
  658. ; Classes/Objects - Class/Object Functions
  659. ; -----------------------------------------------------------------------------
  660. [call_user_method_array | Call a user method given with an array of parameters [deprecated], returns mixed]
  661. call_user_method_array(|string method_name, object obj, [array paramarr])
  662. [call_user_method | Call a user method on an specific object [deprecated], returns mixed]
  663. call_user_method(|string method_name, object obj, [mixed parameter], [mixed ...])
  664. [class_exists | Checks if the class has been defined, returns bool]
  665. class_exists(|string class_name)
  666. [get_class_methods | Returns an array of class methods' names, returns array]
  667. get_class_methods(|mixed class_name)
  668. [get_class_vars | Returns an array of default properties of the class, returns array]
  669. get_class_vars(|string class_name)
  670. [get_class | Returns the name of the class of an object, returns string]
  671. get_class(|object obj)
  672. [get_declared_classes | Returns an array with the name of the defined classes, returns array]
  673. get_declared_classes()|
  674. [get_object_vars | Returns an associative array of object properties, returns array]
  675. get_object_vars(|object obj)
  676. [get_parent_class | Retrieves the parent class name for object or class, returns string]
  677. get_parent_class(|mixed obj)
  678. [is_a | Returns TRUE if the object is of this class or has this class as one of its parents, returns bool]
  679. is_a(|object object, string class_name)
  680. [is_subclass_of | Returns TRUE if the object has this class as one of its parents, returns bool]
  681. is_subclass_of(|object object, string class_name)
  682. [method_exists | Checks if the class method exists, returns bool]
  683. method_exists(|object object, string method_name)
  684. ; -----------------------------------------------------------------------------
  685. ; ClibPDF - ClibPDF functions
  686. ; -----------------------------------------------------------------------------
  687. [cpdf_add_annotation | Adds annotation, returns bool]
  688. cpdf_add_annotation(|int pdf_document, float llx, float lly, float urx, float ury, string title, string content, [int mode])
  689. [cpdf_add_outline | Adds bookmark for current page, returns int]
  690. cpdf_add_outline(|int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text)
  691. [cpdf_arc | Draws an arc, returns bool]
  692. cpdf_arc(|int pdf_document, float x-coor, float y-coor, float radius, float start, float end, [int mode])
  693. [cpdf_begin_text | Starts text section, returns bool]
  694. cpdf_begin_text(|int pdf_document)
  695. [cpdf_circle | Draw a circle, returns bool]
  696. cpdf_circle(|int pdf_document, float x-coor, float y-coor, float radius, [int mode])
  697. [cpdf_clip | Clips to current path, returns bool]
  698. cpdf_clip(|int pdf_document)
  699. [cpdf_close | Closes the pdf document, returns bool]
  700. cpdf_close(|int pdf_document)
  701. [cpdf_closepath_fill_stroke | Close, fill and stroke current path, returns bool]
  702. cpdf_closepath_fill_stroke(|int pdf_document)
  703. [cpdf_closepath_stroke | Close path and draw line along path, returns bool]
  704. cpdf_closepath_stroke(|int pdf_document)
  705. [cpdf_closepath | Close path, returns bool]
  706. cpdf_closepath(|int pdf_document)
  707. [cpdf_continue_text | Output text in next line, returns bool]
  708. cpdf_continue_text(|int pdf_document, string text)
  709. [cpdf_curveto | Draws a curve, returns bool]
  710. cpdf_curveto(|int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3, [int mode])
  711. [cpdf_end_text | Ends text section, returns bool]
  712. cpdf_end_text(|int pdf_document)
  713. [cpdf_fill_stroke | Fill and stroke current path, returns bool]
  714. cpdf_fill_stroke(|int pdf_document)
  715. [cpdf_fill | Fill current path, returns bool]
  716. cpdf_fill(|int pdf_document)
  717. [cpdf_finalize_page | Ends page, returns bool]
  718. cpdf_finalize_page(|int pdf_document, int page_number)
  719. [cpdf_finalize | Ends document, returns bool]
  720. cpdf_finalize(|int pdf_document)
  721. [cpdf_global_set_document_limits | Sets document limits for any pdf document, returns bool]
  722. cpdf_global_set_document_limits(|int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects)
  723. [cpdf_import_jpeg | Opens a JPEG image, returns int]
  724. cpdf_import_jpeg(|int pdf_document, string file_name, float x-coor, float y-coor, float angle, float width, float height, float x-scale, float y-scale, int gsave, [int mode])
  725. [cpdf_lineto | Draws a line, returns bool]
  726. cpdf_lineto(|int pdf_document, float x-coor, float y-coor, [int mode])
  727. [cpdf_moveto | Sets current point, returns bool]
  728. cpdf_moveto(|int pdf_document, float x-coor, float y-coor, [int mode])
  729. [cpdf_newpath | Starts a new path, returns bool]
  730. cpdf_newpath(|int pdf_document)
  731. [cpdf_open | Opens a new pdf document, returns int]
  732. cpdf_open(|int compression, [string filename])
  733. [cpdf_output_buffer | Outputs the pdf document in memory buffer, returns bool]
  734. cpdf_output_buffer(|int pdf_document)
  735. [cpdf_page_init | Starts new page, returns bool]
  736. cpdf_page_init(|int pdf_document, int page_number, int orientation, float height, float width, [float unit])
  737. [cpdf_place_inline_image | Places an image on the page, returns bool]
  738. cpdf_place_inline_image(|int pdf_document, int image, float x-coor, float y-coor, float angle, float width, float height, [int mode])
  739. [cpdf_rect | Draw a rectangle, returns bool]
  740. cpdf_rect(|int pdf_document, float x-coor, float y-coor, float width, float height, [int mode])
  741. [cpdf_restore | Restores formerly saved environment, returns bool]
  742. cpdf_restore(|int pdf_document)
  743. [cpdf_rlineto | Draws a line, returns bool]
  744. cpdf_rlineto(|int pdf_document, float x-coor, float y-coor, [int mode])
  745. [cpdf_rmoveto | Sets current point, returns bool]
  746. cpdf_rmoveto(|int pdf_document, float x-coor, float y-coor, [int mode])
  747. [cpdf_rotate_text | Sets text rotation angle, returns bool]
  748. cpdf_rotate_text(|int pdfdoc, float angle)
  749. [cpdf_rotate | Sets rotation, returns bool]
  750. cpdf_rotate(|int pdf_document, float angle)
  751. [cpdf_save_to_file | Writes the pdf document into a file, returns bool]
  752. cpdf_save_to_file(|int pdf_document, string filename)
  753. [cpdf_save | Saves current environment, returns bool]
  754. cpdf_save(|int pdf_document)
  755. [cpdf_scale | Sets scaling, returns bool]
  756. cpdf_scale(|int pdf_document, float x-scale, float y-scale)
  757. [cpdf_set_action_url | Sets hyperlink, returns bool]
  758. cpdf_set_action_url(|int pdfdoc, float xll, float yll, float xur, float xur, string url, [int mode])
  759. [cpdf_set_char_spacing | Sets character spacing, returns bool]
  760. cpdf_set_char_spacing(|int pdf_document, float space)
  761. [cpdf_set_creator | Sets the creator field in the pdf document, returns bool]
  762. cpdf_set_creator(|string creator)
  763. [cpdf_set_current_page | Sets current page, returns bool]
  764. cpdf_set_current_page(|int pdf_document, int page_number)
  765. [cpdf_set_font_directories | Sets directories to search when using external fonts, returns bool]
  766. cpdf_set_font_directories(|int pdfdoc, string pfmdir, string pfbdir)
  767. [cpdf_set_font_map_file | Sets fontname to filename translation map when using external fonts, returns bool]
  768. cpdf_set_font_map_file(|int pdfdoc, string filename)
  769. [cpdf_set_font | Select the current font face and size, returns bool]
  770. cpdf_set_font(|int pdf_document, string font_name, float size, string encoding)
  771. [cpdf_set_horiz_scaling | Sets horizontal scaling of text, returns bool]
  772. cpdf_set_horiz_scaling(|int pdf_document, float scale)
  773. [cpdf_set_keywords | Sets the keywords field of the pdf document, returns bool]
  774. cpdf_set_keywords(|string keywords)
  775. [cpdf_set_leading | Sets distance between text lines, returns bool]
  776. cpdf_set_leading(|int pdf_document, float distance)
  777. [cpdf_set_page_animation | Sets duration between pages, returns bool]
  778. cpdf_set_page_animation(|int pdf_document, int transition, float duration)
  779. [cpdf_set_subject | Sets the subject field of the pdf document, returns bool]
  780. cpdf_set_subject(|int pdf_document, string subject)
  781. [cpdf_set_text_matrix | Sets the text matrix, returns bool]
  782. cpdf_set_text_matrix(|int pdf_document, array matrix)
  783. [cpdf_set_text_pos | Sets text position, returns bool]
  784. cpdf_set_text_pos(|int pdf_document, float x-coor, float y-coor, [int mode])
  785. [cpdf_set_text_rendering | Determines how text is rendered, returns bool]
  786. cpdf_set_text_rendering(|int pdf_document, int rendermode)
  787. [cpdf_set_text_rise | Sets the text rise, returns bool]
  788. cpdf_set_text_rise(|int pdf_document, float value)
  789. [cpdf_set_title | Sets the title field of the pdf document, returns bool]
  790. cpdf_set_title(|string title)
  791. [cpdf_set_viewer_preferences | How to show the document in the viewer, returns bool]
  792. cpdf_set_viewer_preferences(|int pdfdoc, array preferences)
  793. [cpdf_set_word_spacing | Sets spacing between words, returns bool]
  794. cpdf_set_word_spacing(|int pdf_document, float space)
  795. [cpdf_setdash | Sets dash pattern, returns bool]
  796. cpdf_setdash(|int pdf_document, float white, float black)
  797. [cpdf_setflat | Sets flatness, returns bool]
  798. cpdf_setflat(|int pdf_document, float value)
  799. [cpdf_setgray_fill | Sets filling color to gray value, returns bool]
  800. cpdf_setgray_fill(|int pdf_document, float value)
  801. [cpdf_setgray_stroke | Sets drawing color to gray value, returns bool]
  802. cpdf_setgray_stroke(|int pdf_document, float gray_value)
  803. [cpdf_setgray | Sets drawing and filling color to gray value, returns bool]
  804. cpdf_setgray(|int pdf_document, float gray_value)
  805. [cpdf_setlinecap | Sets linecap parameter, returns bool]
  806. cpdf_setlinecap(|int pdf_document, int value)
  807. [cpdf_setlinejoin | Sets linejoin parameter, returns bool]
  808. cpdf_setlinejoin(|int pdf_document, int value)
  809. [cpdf_setlinewidth | Sets line width, returns bool]
  810. cpdf_setlinewidth(|int pdf_document, float width)
  811. [cpdf_setmiterlimit | Sets miter limit, returns bool]
  812. cpdf_setmiterlimit(|int pdf_document, float value)
  813. [cpdf_setrgbcolor_fill | Sets filling color to rgb color value, returns bool]
  814. cpdf_setrgbcolor_fill(|int pdf_document, float red_value, float green_value, float blue_value)
  815. [cpdf_setrgbcolor_stroke | Sets drawing color to rgb color value, returns bool]
  816. cpdf_setrgbcolor_stroke(|int pdf_document, float red_value, float green_value, float blue_value)
  817. [cpdf_setrgbcolor | Sets drawing and filling color to rgb color value, returns bool]
  818. cpdf_setrgbcolor(|int pdf_document, float red_value, float green_value, float blue_value)
  819. [cpdf_show_xy | Output text at position, returns bool]
  820. cpdf_show_xy(|int pdf_document, string text, float x-coor, float y-coor, [int mode])
  821. [cpdf_show | Output text at current position, returns bool]
  822. cpdf_show(|int pdf_document, string text)
  823. [cpdf_stringwidth | Returns width of text in current font, returns float]
  824. cpdf_stringwidth(|int pdf_document, string text)
  825. [cpdf_stroke | Draw line along path, returns bool]
  826. cpdf_stroke(|int pdf_document)
  827. [cpdf_text | Output text with parameters, returns bool]
  828. cpdf_text(|int pdf_document, string text, float x-coor, float y-coor, [int mode], [float orientation], [int alignmode])
  829. [cpdf_translate | Sets origin of coordinate system, returns bool]
  830. cpdf_translate(|int pdf_document, float x-coor, float y-coor, [int mode])
  831. ; -----------------------------------------------------------------------------
  832. ; Crack - Crack functions
  833. ; -----------------------------------------------------------------------------
  834. [crack_check | Performs an obscure check with the given password, returns bool]
  835. crack_check(|[resource dictionary], string password)
  836. [crack_closedict | Closes an open CrackLib dictionary, returns bool]
  837. crack_closedict(|[resource dictionary])
  838. [crack_getlastmessage | Returns the message from the last obscure check, returns string]
  839. crack_getlastmessage()|
  840. [crack_opendict | Opens a new CrackLib dictionary, returns resource]
  841. crack_opendict(|string dictionary)
  842. ; -----------------------------------------------------------------------------
  843. ; CURL - CURL, Client URL Library Functions
  844. ; -----------------------------------------------------------------------------
  845. [curl_close | Close a CURL session, returns void]
  846. curl_close(|resource ch)
  847. [curl_errno | Return the last error number, returns int]
  848. curl_errno(|resource ch)
  849. [curl_error | Return a string containing the last error for the current session, returns string]
  850. curl_error(|resource ch)
  851. [curl_exec | Perform a CURL session, returns mixed]
  852. curl_exec(|resource ch)
  853. [curl_getinfo | Get information regarding a specific transfer, returns string]
  854. curl_getinfo(|resource ch, [int opt])
  855. [curl_init | Initialize a CURL session, returns resource]
  856. curl_init(|[string url])
  857. [curl_multi_add_handle | Add a normal cURL handle to a cURL multi handle, returns int]
  858. curl_multi_add_handle(|resource mh, resource ch)
  859. [curl_multi_close | Close a set of cURL handles, returns void]
  860. curl_multi_close(|resource mh)
  861. [curl_multi_exec | Run the sub-connections of the current cURL handle, returns int]
  862. curl_multi_exec(|resource mh)
  863. [curl_multi_getcontent | Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set, returns string]
  864. curl_multi_getcontent(|resource ch)
  865. [curl_multi_info_read | Get information about the current transfers, returns array]
  866. curl_multi_info_read(|resource mh)
  867. [curl_multi_init | Returns a new cURL multi handle, returns resource]
  868. curl_multi_init()|
  869. [curl_multi_remove_handle | Remove a multi handle from a set of cURL handles, returns int]
  870. curl_multi_remove_handle(|resource mh, resource ch)
  871. [curl_multi_select | Get all the sockets associated with the cURL extension, which can then be "selected", returns int]
  872. curl_multi_select(|resource mh, [float timeout])
  873. [curl_setopt | Set an option for a CURL transfer, returns bool]
  874. curl_setopt(|resource ch, string option, mixed value)
  875. [curl_version | Return the current CURL version, returns string]
  876. curl_version()|
  877. ; -----------------------------------------------------------------------------
  878. ; Cybercash - Cybercash payment functions
  879. ; -----------------------------------------------------------------------------
  880. [cybercash_base64_decode | base64 decode data for Cybercash, returns string]
  881. cybercash_base64_decode(|string inbuff)
  882. [cybercash_base64_encode | base64 encode data for Cybercash, returns string]
  883. cybercash_base64_encode(|string inbuff)
  884. [cybercash_decr | Cybercash decrypt, returns array]
  885. cybercash_decr(|string wmk, string sk, string inbuff)
  886. [cybercash_encr | Cybercash encrypt, returns array]
  887. cybercash_encr(|string wmk, string sk, string inbuff)
  888. ; -----------------------------------------------------------------------------
  889. ; Cyrus IMAP - Cyrus IMAP administration functions
  890. ; -----------------------------------------------------------------------------
  891. [cyrus_authenticate | Authenticate against a Cyrus IMAP server, returns bool]
  892. cyrus_authenticate(|resource connection, [string mechlist], [string service], [string user], [int minssf], [int maxssf])
  893. [cyrus_bind | Bind callbacks to a Cyrus IMAP connection, returns bool]
  894. cyrus_bind(|resource connection, array callbacks)
  895. [cyrus_close | Close connection to a Cyrus IMAP server, returns bool]
  896. cyrus_close(|resource connection)
  897. [cyrus_connect | Connect to a Cyrus IMAP server, returns resource]
  898. cyrus_connect(|[string host], [string port], [int flags])
  899. [cyrus_query | Send a query to a Cyrus IMAP server, returns bool]
  900. cyrus_query(|resource connection, string query)
  901. [cyrus_unbind | Unbind ..., returns bool]
  902. cyrus_unbind(|resource connection, string trigger_name)
  903. ; -----------------------------------------------------------------------------
  904. ; ctype - Character type functions
  905. ; -----------------------------------------------------------------------------
  906. [ctype_alnum | Check for alphanumeric character(s), returns bool]
  907. ctype_alnum(|string text)
  908. [ctype_alpha | Check for alphabetic character(s), returns bool]
  909. ctype_alpha(|string text)
  910. [ctype_cntrl | Check for control character(s), returns bool]
  911. ctype_cntrl(|string text)
  912. [ctype_digit | Check for numeric character(s), returns bool]
  913. ctype_digit(|string text)
  914. [ctype_graph | Check for any printable character(s) except space, returns bool]
  915. ctype_graph(|string text)
  916. [ctype_lower | Check for lowercase character(s), returns bool]
  917. ctype_lower(|string text)
  918. [ctype_print | Check for printable character(s), returns bool]
  919. ctype_print(|string text)
  920. [ctype_punct | Check for any printable character which is not whitespace or an alphanumeric character, returns bool]
  921. ctype_punct(|string text)
  922. [ctype_space | Check for whitespace character(s), returns bool]
  923. ctype_space(|string text)
  924. [ctype_upper | Check for uppercase character(s), returns bool]
  925. ctype_upper(|string text)
  926. [ctype_xdigit | Check for character(s) representing a hexadecimal digit, returns bool]
  927. ctype_xdigit(|string text)
  928. ; -----------------------------------------------------------------------------
  929. ; dba - Database (dbm-style) abstraction layer functions
  930. ; -----------------------------------------------------------------------------
  931. [dba_close | Close database, returns void]
  932. dba_close(|resource handle)
  933. [dba_delete | Delete entry specified by key, returns bool]
  934. dba_delete(|string key, resource handle)
  935. [dba_exists | Check whether key exists, returns bool]
  936. dba_exists(|string key, resource handle)
  937. [dba_fetch | Fetch data specified by key, returns string]
  938. dba_fetch(|string key, resource handle)
  939. [dba_firstkey | Fetch first key, returns string]
  940. dba_firstkey(|resource handle)
  941. [dba_handlers | List handlers available, returns array]
  942. dba_handlers()|
  943. [dba_insert | Insert entry, returns bool]
  944. dba_insert(|string key, string value, resource handle)
  945. [dba_key_split | Splits a key in string representation into array representation, returns mixed]
  946. dba_key_split(|mixed key)
  947. [dba_list | List all open database files, returns array]
  948. dba_list()|
  949. [dba_nextkey | Fetch next key, returns string]
  950. dba_nextkey(|resource handle)
  951. [dba_open | Open database, returns resource]
  952. dba_open(|string path, string mode, string handler, [ ...])
  953. [dba_optimize | Optimize database, returns bool]
  954. dba_optimize(|resource handle)
  955. [dba_popen | Open database persistently, returns resource]
  956. dba_popen(|string path, string mode, string handler, [ ...])
  957. [dba_replace | Replace or insert entry, returns bool]
  958. dba_replace(|string key, string value, resource handle)
  959. [dba_sync | Synchronize database, returns bool]
  960. dba_sync(|resource handle)
  961. ; -----------------------------------------------------------------------------
  962. ; Date/Time - Date and Time functions
  963. ; -----------------------------------------------------------------------------
  964. [checkdate | Validate a gregorian date, returns bool]
  965. checkdate(|int month, int day, int year)
  966. [date | Format a local time/date, returns string]
  967. date(|string format, [int timestamp])
  968. [getdate | Get date/time information, returns array]
  969. getdate(|[int timestamp])
  970. [gettimeofday | Get current time, returns array]
  971. gettimeofday()|
  972. [gmdate | Format a GMT/UTC date/time, returns string]
  973. gmdate(|string format, [int timestamp])
  974. [gmmktime | Get UNIX timestamp for a GMT date, returns int]
  975. gmmktime(|[int hour], [int minute], [int second], [int month], [int day], [int year], [int is_dst])
  976. [gmstrftime | Format a GMT/UTC time/date according to locale settings, returns string]
  977. gmstrftime(|string format, [int timestamp])
  978. [localtime | Get the local time, returns array]
  979. localtime(|[int timestamp], [bool is_associative])
  980. [microtime | Return current UNIX timestamp with microseconds, returns string]
  981. microtime()|
  982. [mktime | Get UNIX timestamp for a date, returns int]
  983. mktime(|[int hour], [int minute], [int second], [int month], [int day], [int year], [int is_dst])
  984. [strftime | Format a local time/date according to locale settings, returns string]
  985. strftime(|string format, [int timestamp])
  986. [strtotime | Parse about any English textual datetime description into a UNIX timestamp, returns int]
  987. strtotime(|string time, [int now])
  988. [time | Return current UNIX timestamp, returns int]
  989. time()|
  990. ; -----------------------------------------------------------------------------
  991. ; dBase - dBase functions
  992. ; -----------------------------------------------------------------------------
  993. [dbase_add_record | Add a record to a dBase database, returns bool]
  994. dbase_add_record(|int dbase_identifier, array record)
  995. [dbase_close | Close a dBase database, returns bool]
  996. dbase_close(|int dbase_identifier)
  997. [dbase_create | Creates a dBase database, returns int]
  998. dbase_create(|string filename, array fields)
  999. [dbase_delete_record | Deletes a record from a dBase database, returns bool]
  1000. dbase_delete_record(|int dbase_identifier, int record)
  1001. [dbase_get_header_info | Get the header info of a dBase database, returns array]
  1002. dbase_get_header_info(|int dbase_identifier)
  1003. [dbase_get_record_with_names | Gets a record from a dBase database as an associative array, returns array]
  1004. dbase_get_record_with_names(|int dbase_identifier, int record)
  1005. [dbase_get_record | Gets a record from a dBase database, returns array]
  1006. dbase_get_record(|int dbase_identifier, int record)
  1007. [dbase_numfields | Find out how many fields are in a dBase database, returns int]
  1008. dbase_numfields(|int dbase_identifier)
  1009. [dbase_numrecords | Find out how many records are in a dBase database, returns int]
  1010. dbase_numrecords(|int dbase_identifier)
  1011. [dbase_open | Opens a dBase database, returns int]
  1012. dbase_open(|string filename, int flags)
  1013. [dbase_pack | Packs a dBase database, returns bool]
  1014. dbase_pack(|int dbase_identifier)
  1015. [dbase_replace_record | Replace a record in a dBase database, returns bool]
  1016. dbase_replace_record(|int dbase_identifier, array record, int dbase_record_number)
  1017. ; -----------------------------------------------------------------------------
  1018. ; DBM - DBM Functions [deprecated]
  1019. ; -----------------------------------------------------------------------------
  1020. [dblist | Describes the DBM-compatible library being used, returns string]
  1021. dblist()|
  1022. [dbmclose | Closes a dbm database, returns bool]
  1023. dbmclose(|resource dbm_identifier)
  1024. [dbmdelete | Deletes the value for a key from a DBM database, returns bool]
  1025. dbmdelete(|resource dbm_identifier, string key)
  1026. [dbmexists | Tells if a value exists for a key in a DBM database, returns bool]
  1027. dbmexists(|resource dbm_identifier, string key)
  1028. [dbmfetch | Fetches a value for a key from a DBM database, returns string]
  1029. dbmfetch(|resource dbm_identifier, string key)
  1030. [dbmfirstkey | Retrieves the first key from a DBM database, returns string]
  1031. dbmfirstkey(|resource dbm_identifier)
  1032. [dbminsert | Inserts a value for a key in a DBM database, returns int]
  1033. dbminsert(|resource dbm_identifier, string key, string value)
  1034. [dbmnextkey | Retrieves the next key from a DBM database, returns string]
  1035. dbmnextkey(|resource dbm_identifier, string key)
  1036. [dbmopen | Opens a DBM database, returns resource]
  1037. dbmopen(|string filename, string flags)
  1038. [dbmreplace | Replaces the value for a key in a DBM database, returns int]
  1039. dbmreplace(|resource dbm_identifier, string key, string value)
  1040. ; -----------------------------------------------------------------------------
  1041. ; dbx - dbx functions
  1042. ; -----------------------------------------------------------------------------
  1043. [dbx_close | Close an open connection/database, returns bool]
  1044. dbx_close(|object link_identifier)
  1045. [dbx_compare | Compare two rows for sorting purposes, returns int]
  1046. dbx_compare(|array row_a, array row_b, string column_key, [int flags])
  1047. [dbx_connect | Open a connection/database, returns object]
  1048. dbx_connect(|mixed module, string host, string database, string username, string password, [int persistent])
  1049. [dbx_error | Report the error message of the latest function call in the module (not just in the connection), returns string]
  1050. dbx_error(|object link_identifier)
  1051. [dbx_escape_string | Escape a string so it can safely be used in an sql-statement., returns string]
  1052. dbx_escape_string(|object link_identifier, string text)
  1053. [dbx_fetch_row | Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set, returns object]
  1054. dbx_fetch_row(|object result_identifier)
  1055. [dbx_query | Send a query and fetch all results (if any), returns object]
  1056. dbx_query(|object link_identifier, string sql_statement, [int flags])
  1057. [dbx_sort | Sort a result from a dbx_query by a custom sort function, returns bool]
  1058. dbx_sort(|object result, string user_compare_function)
  1059. ; -----------------------------------------------------------------------------
  1060. ; DB++ - DB++ Functions
  1061. ; -----------------------------------------------------------------------------
  1062. [dbplus_add | Add a tuple to a relation, returns int]
  1063. dbplus_add(|resource relation, array tuple)
  1064. [dbplus_aql | Perform AQL query, returns resource]
  1065. dbplus_aql(|string query, [string server], [string dbpath])
  1066. [dbplus_chdir | Get/Set database virtual current directory, returns string]
  1067. dbplus_chdir(|[string newdir])
  1068. [dbplus_close | Close a relation, returns int]
  1069. dbplus_close(|resource relation)
  1070. [dbplus_curr | Get current tuple from relation, returns int]
  1071. dbplus_curr(|resource relation, array tuple)
  1072. [dbplus_errcode | Get error string for given errorcode or last error, returns string]
  1073. dbplus_errcode(|int errno)
  1074. [dbplus_errno | Get error code for last operation, returns int]
  1075. dbplus_errno()|
  1076. [dbplus_find | Set a constraint on a relation, returns int]
  1077. dbplus_find(|resource relation, array constraints, mixed tuple)
  1078. [dbplus_first | Get first tuple from relation, returns int]
  1079. dbplus_first(|resource relation, array tuple)
  1080. [dbplus_flush | Flush all changes made on a relation, returns int]
  1081. dbplus_flush(|resource relation)
  1082. [dbplus_freealllocks | Free all locks held by this client, returns int]
  1083. dbplus_freealllocks()|
  1084. [dbplus_freelock | Release write lock on tuple, returns int]
  1085. dbplus_freelock(|resource relation, string tname)
  1086. [dbplus_freerlocks | Free all tuple locks on given relation, returns int]
  1087. dbplus_freerlocks(|resource relation)
  1088. [dbplus_getlock | Get a write lock on a tuple, returns int]
  1089. dbplus_getlock(|resource relation, string tname)
  1090. [dbplus_getunique | Get an id number unique to a relation, returns int]
  1091. dbplus_getunique(|resource relation, int uniqueid)
  1092. [dbplus_info | ???, returns int]
  1093. dbplus_info(|resource relation, string key, array )
  1094. [dbplus_last | Get last tuple from relation, returns int]
  1095. dbplus_last(|resource relation, array tuple)
  1096. [dbplus_lockrel | Request write lock on relation, returns int]
  1097. dbplus_lockrel(|resource relation)
  1098. [dbplus_next | Get next tuple from relation, returns int]
  1099. dbplus_next(|resource relation, array )
  1100. [dbplus_open | Open relation file, returns resource]
  1101. dbplus_open(|string name)
  1102. [dbplus_prev | Get previous tuple from relation, returns int]
  1103. dbplus_prev(|resource relation, array tuple)
  1104. [dbplus_rchperm | Change relation permissions, returns int]
  1105. dbplus_rchperm(|resource relation, int mask, string user, string group)
  1106. [dbplus_rcreate | Creates a new DB++ relation, returns resource]
  1107. dbplus_rcreate(|string name, mixed domlist, [bool overwrite])
  1108. [dbplus_rcrtexact | Creates an exact but empty copy of a relation including indices, returns resource]
  1109. dbplus_rcrtexact(|string name, resource relation, bool overwrite)
  1110. [dbplus_rcrtlike | Creates an empty copy of a relation with default indices, returns resource]
  1111. dbplus_rcrtlike(|string name, resource relation, int flag)
  1112. [dbplus_resolve | Resolve host information for relation, returns int]
  1113. dbplus_resolve(|string relation_name)
  1114. [dbplus_restorepos | ???, returns int]
  1115. dbplus_restorepos(|resource relation, array tuple)
  1116. [dbplus_rkeys | Specify new primary key for a relation, returns resource]
  1117. dbplus_rkeys(|resource relation, mixed domlist)
  1118. [dbplus_ropen | Open relation file local, returns resource]
  1119. dbplus_ropen(|string name)
  1120. [dbplus_rquery | Perform local (raw) AQL query, returns int]
  1121. dbplus_rquery(|string query, string dbpath)
  1122. [dbplus_rrename | Rename a relation, returns int]
  1123. dbplus_rrename(|resource relation, string name)
  1124. [dbplus_rsecindex | Create a new secondary index for a relation, returns resource]
  1125. dbplus_rsecindex(|resource relation, mixed domlist, int type)
  1126. [dbplus_runlink | Remove relation from filesystem, returns int]
  1127. dbplus_runlink(|resource relation)
  1128. [dbplus_rzap | Remove all tuples from relation, returns int]
  1129. dbplus_rzap(|resource relation)
  1130. [dbplus_savepos | ???, returns int]
  1131. dbplus_savepos(|resource relation)
  1132. [dbplus_setindex | ???, returns int]
  1133. dbplus_setindex(|resource relation, string idx_name)
  1134. [dbplus_setindexbynumber | ???, returns int]
  1135. dbplus_setindexbynumber(|resource relation, int idx_number)
  1136. [dbplus_sql | Perform SQL query, returns resource]
  1137. dbplus_sql(|string query, string server, string dbpath)
  1138. [dbplus_tcl | Execute TCL code on server side, returns int]
  1139. dbplus_tcl(|int sid, string script)
  1140. [dbplus_tremove | Remove tuple and return new current tuple, returns int]
  1141. dbplus_tremove(|resource relation, array tuple, [array current])
  1142. [dbplus_undo | ???, returns int]
  1143. dbplus_undo(|resource relation)
  1144. [dbplus_undoprepare | ???, returns int]
  1145. dbplus_undoprepare(|resource relation)
  1146. [dbplus_unlockrel | Give up write lock on relation, returns int]
  1147. dbplus_unlockrel(|resource relation)
  1148. [dbplus_unselect | Remove a constraint from relation, returns int]
  1149. dbplus_unselect(|resource relation)
  1150. [dbplus_update | Update specified tuple in relation, returns int]
  1151. dbplus_update(|resource relation, array old, array new)
  1152. [dbplus_xlockrel | Request exclusive lock on relation, returns int]
  1153. dbplus_xlockrel(|resource relation)
  1154. [dbplus_xunlockrel | Free exclusive lock on relation, returns int]
  1155. dbplus_xunlockrel(|resource relation)
  1156. ; -----------------------------------------------------------------------------
  1157. ; Direct IO - Direct IO functions
  1158. ; -----------------------------------------------------------------------------
  1159. [dio_close | Closes the file descriptor given by fd, returns void]
  1160. dio_close(|resource fd)
  1161. [dio_fcntl | Performs a c library fcntl on fd, returns mixed]
  1162. dio_fcntl(|resource fd, int cmd, [mixed arg])
  1163. [dio_open | Opens a new filename with specified permissions of flags and creation permissions of mode, returns resource]
  1164. dio_open(|string filename, int flags, [int mode])
  1165. [dio_read | Reads n bytes from fd and returns them, if n is not specified, reads 1k block, returns string]
  1166. dio_read(|resource fd, [int n])
  1167. [dio_seek | Seeks to pos on fd from whence, returns int]
  1168. dio_seek(|resource fd, int pos, int whence)
  1169. [dio_stat | Gets stat information about the file descriptor fd, returns array]
  1170. dio_stat(|resource fd)
  1171. [dio_tcsetattr | Sets terminal attributes and baud rate for a serial port, returns ]
  1172. dio_tcsetattr(|resource fd, array options)
  1173. [dio_truncate | Truncates file descriptor fd to offset bytes, returns bool]
  1174. dio_truncate(|resource fd, int offset)
  1175. [dio_write | Writes data to fd with optional truncation at length, returns int]
  1176. dio_write(|resource fd, string data, [int len])
  1177. ; -----------------------------------------------------------------------------
  1178. ; Directories - Directory functions
  1179. ; -----------------------------------------------------------------------------
  1180. [chdir | Change directory, returns bool]
  1181. chdir(|string directory)
  1182. [chroot | Change the root directory, returns bool]
  1183. chroot(|string directory)
  1184. [dir | directory class]
  1185. [closedir | close directory handle, returns void]
  1186. closedir(|resource dir_handle)
  1187. [getcwd | gets the current working directory, returns string]
  1188. getcwd()|
  1189. [opendir | open directory handle, returns resource]
  1190. opendir(|string path)
  1191. [readdir | read entry from directory handle, returns string]
  1192. readdir(|resource dir_handle)
  1193. [rewinddir | rewind directory handle, returns void]
  1194. rewinddir(|resource dir_handle)
  1195. [scandir | List files and directories inside the specified path, returns array]
  1196. scandir(|string directory, [int sorting_order])
  1197. ; -----------------------------------------------------------------------------
  1198. ; DOM XML - DOM XML functions
  1199. ; -----------------------------------------------------------------------------
  1200. [DomAttribute->name | Returns name of attribute, returns bool]
  1201. DomAttribute->name()|
  1202. [DomAttribute->specified | Checks if attribute is specified, returns bool]
  1203. DomAttribute->specified()|
  1204. [DomAttribute->value | Returns value of attribute, returns bool]
  1205. DomAttribute->value()|
  1206. [DomDocument->add_root [deprecated] | Adds a root node, returns resource]
  1207. DomDocument->add_root(|string name)
  1208. [DomDocument->create_attribute | Create new attribute, returns object]
  1209. DomDocument->create_attribute(|string name, string value)
  1210. [DomDocument->create_cdata_section | Create new cdata node, returns string]
  1211. DomDocument->create_cdata_section(|string content)
  1212. [DomDocument->create_comment | Create new comment node, returns object]
  1213. DomDocument->create_comment(|string content)
  1214. [DomDocument->create_element_ns | Create new element node with an associated namespace, returns object]
  1215. DomDocument->create_element_ns(|string uri, string name, [string prefix])
  1216. [DomDocument->create_element | Create new element node, returns object]
  1217. DomDocument->create_element(|string name)
  1218. [DomDocument->create_entity_reference | , returns object]
  1219. DomDocument->create_entity_reference(|string content)
  1220. [DomDocument->create_processing_instruction | Creates new PI node, returns string]
  1221. DomDocument->create_processing_instruction(|string content)
  1222. [DomDocument->create_text_node | Create new text node, returns object]
  1223. DomDocument->create_text_node(|string content)
  1224. [DomDocument->doctype | Returns the document type, returns object]
  1225. DomDocument->doctype()|
  1226. [DomDocument->document_element | Returns root element node, returns object]
  1227. DomDocument->document_element()|
  1228. [DomDocument->dump_file | Dumps the internal XML tree back into a file, returns string]
  1229. DomDocument->dump_file(|string filename, [bool compressionmode], [bool format])
  1230. [DomDocument->dump_mem | Dumps the internal XML tree back into a string, returns string]
  1231. DomDocument->dump_mem(|[bool format], [string encoding])
  1232. [DomDocument->get_element_by_id | Searches for an element with a certain id, returns object]
  1233. DomDocument->get_element_by_id(|string id)
  1234. [DomDocument->get_elements_by_tagname | , returns array]
  1235. DomDocument->get_elements_by_tagname(|string name)
  1236. [DomDocument->html_dump_mem | Dumps the internal XML tree back into a string as HTML, returns string]
  1237. DomDocument->html_dump_mem()|
  1238. [DomDocument->xinclude | Substitutes XIncludes in a DomDocument Object., returns int]
  1239. DomDocument->xinclude()|
  1240. [DomDocumentType->entities | Returns list of entities, returns array]
  1241. DomDocumentType->entities()|
  1242. [DomDocumentType->internal_subset | Returns internal subset, returns bool]
  1243. DomDocumentType->internal_subset()|
  1244. [DomDocumentType->name | Returns name of document type, returns string]
  1245. DomDocumentType->name()|
  1246. [DomDocumentType->notations | Returns list of notations, returns array]
  1247. DomDocumentType->notations()|
  1248. [DomDocumentType->public_id | Returns public id of document type, returns string]
  1249. DomDocumentType->public_id()|
  1250. [DomDocumentType->system_id | Returns system id of document type, returns string]
  1251. DomDocumentType->system_id()|
  1252. [DomElement->get_attribute_node | Returns value of attribute, returns object]
  1253. DomElement->get_attribute_node(|object attr)
  1254. [DomElement->get_attribute | Returns value of attribute, returns object]
  1255. DomElement->get_attribute(|string name)
  1256. [DomElement->get_elements_by_tagname | Gets elements by tagname, returns bool]
  1257. DomElement->get_elements_by_tagname(|string name)
  1258. [DomElement->has_attribute | Checks to see if attribute exists, returns bool]
  1259. DomElement->has_attribute(|string name)
  1260. [DomElement->remove_attribute | Removes attribute, returns bool]
  1261. DomElement->remove_attribute(|string name)
  1262. [DomElement->set_attribute | Adds new attribute, returns bool]
  1263. DomElement->set_attribute(|string name, string value)
  1264. [DomElement->tagname | Returns name of element, returns string]
  1265. DomElement->tagname()|
  1266. [DomNode->add_namespace | Adds a namespace declaration to a node., returns bool]
  1267. DomNode->add_namespace(|string uri, string prefix)
  1268. [DomNode->append_child | Adds new child at the end of the children, returns object]
  1269. DomNode->append_child(|object newnode)
  1270. [DomNode->append_sibling | Adds new sibling to a node, returns object]
  1271. DomNode->append_sibling(|object newnode)
  1272. [DomNode->attributes | Returns list of attributes, returns array]
  1273. DomNode->attributes()|
  1274. [DomNode->child_nodes | Returns children of node, returns array]
  1275. DomNode->child_nodes()|
  1276. [DomNode->clone_node | Clones a node, returns object]
  1277. DomNode->clone_node()|
  1278. [DomNode->dump_node | Dumps a single node, returns string]
  1279. DomNode->dump_node()|
  1280. [DomNode->first_child | Returns first child of node, returns object]
  1281. DomNode->first_child()|
  1282. [DomNode->get_content | Gets content of node, returns string]
  1283. DomNode->get_content()|
  1284. [DomNode->has_attributes | Checks if node has attributes, returns bool]
  1285. DomNode->has_attributes()|
  1286. [DomNode->has_child_nodes | Checks if node has children, returns bool]
  1287. DomNode->has_child_nodes()|
  1288. [DomNode->insert_before | Inserts new node as child, returns object]
  1289. DomNode->insert_before(|object newnode, object refnode)
  1290. [DomNode->is_blank_node | Checks if node is blank, returns bool]
  1291. DomNode->is_blank_node()|
  1292. [DomNode->last_child | Returns last child of node, returns object]
  1293. DomNode->last_child()|
  1294. [DomNode->next_sibling | Returns the next sibling of node, returns object]
  1295. DomNode->next_sibling()|
  1296. [DomNode->node_name | Returns name of node, returns string]
  1297. DomNode->node_name()|
  1298. [DomNode->node_type | Returns type of node, returns int]
  1299. DomNode->node_type()|
  1300. [DomNode->node_value | Returns value of a node, returns string]
  1301. DomNode->node_value()|
  1302. [DomNode->owner_document | Returns the document this node belongs to, returns object]
  1303. DomNode->owner_document()|
  1304. [DomNode->parent_node | Returns the parent of the node, returns object]
  1305. DomNode->parent_node()|
  1306. [DomNode->prefix | Returns name space prefix of node, returns string]
  1307. DomNode->prefix()|
  1308. [DomNode->previous_sibling | Returns the previous sibling of node, returns object]
  1309. DomNode->previous_sibling()|
  1310. [DomNode->remove_child | Removes child from list of children, returns object]
  1311. DomNode->remove_child(|object oldchild)
  1312. [DomNode->replace_child | Replaces a child, returns object]
  1313. DomNode->replace_child(|object oldnode, object newnode)
  1314. [DomNode->replace_node | Replaces node, returns object]
  1315. DomNode->replace_node(|object newnode)
  1316. [DomNode->set_content | Sets content of node, returns bool]
  1317. DomNode->set_content()|
  1318. [DomNode->set_name | Sets name of node, returns bool]
  1319. DomNode->set_name()|
  1320. [DomNode->set_namespace | Sets namespace of a node., returns void]
  1321. DomNode->set_namespace(|string uri, [string prefix])
  1322. [DomNode->unlink_node | Deletes node, returns object]
  1323. DomNode->unlink_node()|
  1324. [DomProcessingInstruction->data | Returns data of pi node, returns string]
  1325. DomProcessingInstruction->data()|
  1326. [DomProcessingInstruction->target | Returns target of pi node, returns string]
  1327. DomProcessingInstruction->target()|
  1328. [DomXsltStylesheet->process | Applies the XSLT-Transformation on a DomDocument Object., returns object]
  1329. DomXsltStylesheet->process(|object DomDocument, [array xslt_parameters], [bool param_is_xpath])
  1330. [DomXsltStylesheet->result_dump_file | Dumps the result from a XSLT-Transformation into a file, returns string]
  1331. DomXsltStylesheet->result_dump_file(|object DomDocument, string filename)
  1332. [DomXsltStylesheet->result_dump_mem | Dumps the result from a XSLT-Transformation back into a string, returns string]
  1333. DomXsltStylesheet->result_dump_mem(|object DomDocument)
  1334. [domxml_new_doc | Creates new empty XML document, returns object]
  1335. domxml_new_doc(|string version)
  1336. [domxml_open_file | Creates a DOM object from XML file, returns object]
  1337. domxml_open_file(|string filename)
  1338. [domxml_open_mem | Creates a DOM object of an XML document, returns object]
  1339. domxml_open_mem(|string str)
  1340. [domxml_version | Get XML library version, returns string]
  1341. domxml_version()|
  1342. [domxml_xmltree | Creates a tree of PHP objects from an XML document, returns object]
  1343. domxml_xmltree(|string str)
  1344. [domxml_xslt_stylesheet_doc | Creates a DomXsltStylesheet Object from a DomDocument Object., returns object]
  1345. domxml_xslt_stylesheet_doc(|object DocDocument Object)
  1346. [domxml_xslt_stylesheet_file | Creates a DomXsltStylesheet Object from a xsl document in a file., returns object]
  1347. domxml_xslt_stylesheet_file(|string xsl file)
  1348. [domxml_xslt_stylesheet | Creates a DomXsltStylesheet Object from a xml document in a string., returns object]
  1349. domxml_xslt_stylesheet(|string xsl document)
  1350. [xpath_eval_expression | Evaluates the XPath Location Path in the given string, returns array]
  1351. xpath_eval_expression(|object xpath_context)
  1352. [xpath_eval | Evaluates the XPath Location Path in the given string, returns array]
  1353. xpath_eval(|object xpath context, string xpath expression, [object contextnode])
  1354. [xpath_new_context | Creates new xpath context, returns object]
  1355. xpath_new_context(|object dom document)
  1356. [xptr_eval | Evaluate the XPtr Location Path in the given string, returns int]
  1357. xptr_eval(|[object xpath_context], string eval_str)
  1358. [xptr_new_context | Create new XPath Context, returns string]
  1359. xptr_new_context(|[object doc_handle])
  1360. ; -----------------------------------------------------------------------------
  1361. ; .NET - .NET functions
  1362. ; -----------------------------------------------------------------------------
  1363. [dotnet_load | Loads a DOTNET module, returns int]
  1364. dotnet_load(|string assembly_name, [string datatype_name], [int codepage])
  1365. ; -----------------------------------------------------------------------------
  1366. ; Errors and Logging - Error Handling and Logging Functions
  1367. ; -----------------------------------------------------------------------------
  1368. [debug_backtrace | Generates a backtrace, returns array]
  1369. debug_backtrace()|
  1370. [debug_print_backtrace | Prints a backtrace, returns void]
  1371. debug_print_backtrace()|
  1372. [error_log | Send an error message somewhere, returns int]
  1373. error_log(|string message, [int message_type], [string destination], [string extra_headers])
  1374. [error_reporting | Sets which PHP errors are reported, returns int]
  1375. error_reporting(|[int level])
  1376. [restore_error_handler | Restores the previous error handler function, returns void]
  1377. restore_error_handler()|
  1378. [set_error_handler | Sets a user-defined error handler function., returns string]
  1379. set_error_handler(|callback error_handler)
  1380. [trigger_error | Generates a user-level error/warning/notice message, returns void]
  1381. trigger_error(|string error_msg, [int error_type])
  1382. [user_error | Alias of trigger_error]
  1383. ; -----------------------------------------------------------------------------
  1384. ; fam - File alteration monitor functions
  1385. ; -----------------------------------------------------------------------------
  1386. [fam_cancel_monitor | Terminate monitoring, returns bool]
  1387. fam_cancel_monitor(|resource fam, resource fam_monitor)
  1388. [fam_close | Close FAM connection]
  1389. fam_close(|resource fam)
  1390. [fam_monitor_collection | Monitor a collection of files in a directory for changes, returns resource]
  1391. fam_monitor_collection(|resource fam, string dirname, int depth, string mask)
  1392. [fam_monitor_directory | Monitor a directory for changes, returns resource]
  1393. fam_monitor_directory(|resource fam, string dirname)
  1394. [fam_monitor_file | Monitor a regular file for changes, returns resource]
  1395. fam_monitor_file(|resource fam, string filename)
  1396. [fam_next_event | ..., returns array]
  1397. fam_next_event(|resource fam)
  1398. [fam_open | Open connection to FAM daemon, returns resource]
  1399. fam_open(|[string appname])
  1400. [fam_pending | Check for pending FAM events, returns bool]
  1401. fam_pending(|resource fam)
  1402. [fam_resume_monitor | Resume suspended monitoring, returns bool]
  1403. fam_resume_monitor(|resource fam, resource fam_monitor)
  1404. [fam_suspend_monitor | Temporarily suspend monitoring, returns bool]
  1405. fam_suspend_monitor(|resource fam, resource fam_monitor)
  1406. ; -----------------------------------------------------------------------------
  1407. ; FrontBase - FrontBase Functions
  1408. ; -----------------------------------------------------------------------------
  1409. [fbsql_affected_rows | Get number of affected rows in previous FrontBase operation, returns int]
  1410. fbsql_affected_rows(|[resource link_identifier])
  1411. [fbsql_autocommit | Enable or disable autocommit, returns bool]
  1412. fbsql_autocommit(|resource link_identifier, [bool OnOff])
  1413. [fbsql_change_user | Change logged in user of the active connection, returns resource]
  1414. fbsql_change_user(|string user, string password, [string database], [resource link_identifier])
  1415. [fbsql_close | Close FrontBase connection, returns bool]
  1416. fbsql_close(|[resource link_identifier])
  1417. [fbsql_commit | Commits a transaction to the database, returns bool]
  1418. fbsql_commit(|[resource link_identifier])
  1419. [fbsql_connect | Open a connection to a FrontBase Server, returns resource]
  1420. fbsql_connect(|[string hostname], [string username], [string password])
  1421. [fbsql_create_blob | Create a BLOB, returns string]
  1422. fbsql_create_blob(|string blob_data, [resource link_identifier])
  1423. [fbsql_create_clob | Create a CLOB, returns string]
  1424. fbsql_create_clob(|string clob_data, [resource link_identifier])
  1425. [fbsql_create_db | Create a FrontBase database, returns bool]
  1426. fbsql_create_db(|string database_name, [resource link_identifier])
  1427. [fbsql_data_seek | Move internal result pointer, returns bool]
  1428. fbsql_data_seek(|resource result_identifier, int row_number)
  1429. [fbsql_database_password | Sets or retrieves the password for a FrontBase database, returns string]
  1430. fbsql_database_password(|resource link_identifier, [string database_password])
  1431. [fbsql_database | Get or set the database name used with a connection, returns string]
  1432. fbsql_database(|resource link_identifier, [string database])
  1433. [fbsql_db_query | Send a FrontBase query, returns resource]
  1434. fbsql_db_query(|string database, string query, [resource link_identifier])
  1435. [fbsql_db_status | Get the status for a given database, returns int]
  1436. fbsql_db_status(|string database_name, [resource link_identifier])
  1437. [fbsql_drop_db | Drop (delete) a FrontBase database, returns bool]
  1438. fbsql_drop_db(|string database_name, [resource link_identifier])
  1439. [fbsql_errno | Returns the numerical value of the error message from previous FrontBase operation, returns int]
  1440. fbsql_errno(|[resource link_identifier])
  1441. [fbsql_error | Returns the text of the error message from previous FrontBase operation, returns string]
  1442. fbsql_error(|[resource link_identifier])
  1443. [fbsql_fetch_array | Fetch a result row as an associative array, a numeric array, or both, returns array]
  1444. fbsql_fetch_array(|resource result, [int result_type])
  1445. [fbsql_fetch_assoc | Fetch a result row as an associative array, returns array]
  1446. fbsql_fetch_assoc(|resource result)
  1447. [fbsql_fetch_field | Get column information from a result and return as an object, returns object]
  1448. fbsql_fetch_field(|resource result, [int field_offset])
  1449. [fbsql_fetch_lengths | Get the length of each output in a result, returns array]
  1450. fbsql_fetch_lengths(|[resource result])
  1451. [fbsql_fetch_object | Fetch a result row as an object, returns object]
  1452. fbsql_fetch_object(|resource result, [int result_type])
  1453. [fbsql_fetch_row | Get a result row as an enumerated array, returns array]
  1454. fbsql_fetch_row(|resource result)
  1455. [fbsql_field_flags | Get the flags associated with the specified field in a result, returns string]
  1456. fbsql_field_flags(|resource result, int field_offset)
  1457. [fbsql_field_len | Returns the length of the specified field, returns int]
  1458. fbsql_field_len(|resource result, int field_offset)
  1459. [fbsql_field_name | Get the name of the specified field in a result, returns string]
  1460. fbsql_field_name(|resource result, int field_index)
  1461. [fbsql_field_seek | Set result pointer to a specified field offset, returns bool]
  1462. fbsql_field_seek(|resource result, int field_offset)
  1463. [fbsql_field_table | Get name of the table the specified field is in, returns string]
  1464. fbsql_field_table(|resource result, int field_offset)
  1465. [fbsql_field_type | Get the type of the specified field in a result, returns string]
  1466. fbsql_field_type(|resource result, int field_offset)
  1467. [fbsql_free_result | Free result memory, returns bool]
  1468. fbsql_free_result(|resource result)
  1469. [fbsql_get_autostart_info | No description given yet, returns array]
  1470. fbsql_get_autostart_info(|[resource link_identifier])
  1471. [fbsql_hostname | Get or set the host name used with a connection, returns string]
  1472. fbsql_hostname(|resource link_identifier, [string host_name])
  1473. [fbsql_insert_id | Get the id generated from the previous INSERT operation, returns int]
  1474. fbsql_insert_id(|[resource link_identifier])
  1475. [fbsql_list_dbs | List databases available on a FrontBase server, returns resource]
  1476. fbsql_list_dbs(|[resource link_identifier])
  1477. [fbsql_list_fields | List FrontBase result fields, returns resource]
  1478. fbsql_list_fields(|string database_name, string table_name, [resource link_identifier])
  1479. [fbsql_list_tables | List tables in a FrontBase database, returns resource]
  1480. fbsql_list_tables(|string database, [resource link_identifier])
  1481. [fbsql_next_result | Move the internal result pointer to the next result, returns bool]
  1482. fbsql_next_result(|resource result_id)
  1483. [fbsql_num_fields | Get number of fields in result, returns int]
  1484. fbsql_num_fields(|resource result)
  1485. [fbsql_num_rows | Get number of rows in result, returns int]
  1486. fbsql_num_rows(|resource result)
  1487. [fbsql_password | Get or set the user password used with a connection, returns string]
  1488. fbsql_password(|resource link_identifier, [string password])
  1489. [fbsql_pconnect | Open a persistent connection to a FrontBase Server, returns resource]
  1490. fbsql_pconnect(|[string hostname], [string username], [string password])
  1491. [fbsql_query | Send a FrontBase query, returns resource]
  1492. fbsql_query(|string query, [resource link_identifier])
  1493. [fbsql_read_blob | Read a BLOB from the database, returns string]
  1494. fbsql_read_blob(|string blob_handle, [resource link_identifier])
  1495. [fbsql_read_clob | Read a CLOB from the database, returns string]
  1496. fbsql_read_clob(|string clob_handle, [resource link_identifier])
  1497. [fbsql_result | Get result data, returns mixed]
  1498. fbsql_result(|resource result, int row, [mixed field])
  1499. [fbsql_rollback | Rollback a transaction to the database, returns bool]
  1500. fbsql_rollback(|[resource link_identifier])
  1501. [fbsql_select_db | Select a FrontBase database, returns bool]
  1502. fbsql_select_db(|string database_name, [resource link_identifier])
  1503. [fbsql_set_lob_mode | Set the LOB retrieve mode for a FrontBase result set, returns bool]
  1504. fbsql_set_lob_mode(|resource result, string database_name)
  1505. [fbsql_set_transaction | Set the transaction locking and isolation, returns void]
  1506. fbsql_set_transaction(|resource link_identifier, int Locking, int Isolation)
  1507. [fbsql_start_db | Start a database on local or remote server, returns bool]
  1508. fbsql_start_db(|string database_name, [resource link_identifier])
  1509. [fbsql_stop_db | Stop a database on local or remote server, returns bool]
  1510. fbsql_stop_db(|string database_name, [resource link_identifier])
  1511. [fbsql_tablename | Get table name of field, returns string]
  1512. fbsql_tablename(|resource result, int i)
  1513. [fbsql_username | Get or set the host user used with a connection, returns string]
  1514. fbsql_username(|resource link_identifier, [string username])
  1515. [fbsql_warnings | Enable or disable FrontBase warnings, returns bool]
  1516. fbsql_warnings(|[bool OnOff])
  1517. ; -----------------------------------------------------------------------------
  1518. ; filePro - filePro functions
  1519. ; -----------------------------------------------------------------------------
  1520. [filepro_fieldcount | Find out how many fields are in a filePro database, returns int]
  1521. filepro_fieldcount()|
  1522. [filepro_fieldname | Gets the name of a field, returns string]
  1523. filepro_fieldname(|int field_number)
  1524. [filepro_fieldtype | Gets the type of a field, returns string]
  1525. filepro_fieldtype(|int field_number)
  1526. [filepro_fieldwidth | Gets the width of a field, returns int]
  1527. filepro_fieldwidth(|int field_number)
  1528. [filepro_retrieve | Retrieves data from a filePro database, returns string]
  1529. filepro_retrieve(|int row_number, int field_number)
  1530. [filepro_rowcount | Find out how many rows are in a filePro database, returns int]
  1531. filepro_rowcount()|
  1532. [filepro | Read and verify the map file, returns bool]
  1533. filepro(|string directory)
  1534. ; -----------------------------------------------------------------------------
  1535. ; Filesystem - Filesystem functions
  1536. ; -----------------------------------------------------------------------------
  1537. [basename | Returns filename component of path, returns string]
  1538. basename(|string path, [string suffix])
  1539. [chgrp | Changes file group, returns bool]
  1540. chgrp(|string filename, mixed group)
  1541. [chmod | Changes file mode, returns bool]
  1542. chmod(|string filename, int mode)
  1543. [chown | Changes file owner, returns bool]
  1544. chown(|string filename, mixed user)
  1545. [clearstatcache | Clears file status cache, returns void]
  1546. clearstatcache()|
  1547. [copy | Copies file, returns bool]
  1548. copy(|string source, string dest)
  1549. [delete | See unlink or unset, returns void]
  1550. delete(|string file)
  1551. [dirname | Returns directory name component of path, returns string]
  1552. dirname(|string path)
  1553. [disk_free_space | Returns available space in directory, returns float]
  1554. disk_free_space(|string directory)
  1555. [disk_total_space | Returns the total size of a directory, returns float]
  1556. disk_total_space(|string directory)
  1557. [diskfreespace | Alias of disk_free_space]
  1558. [fclose | Closes an open file pointer, returns bool]
  1559. fclose(|resource handle)
  1560. [feof | Tests for end-of-file on a file pointer, returns bool]
  1561. feof(|resource handle)
  1562. [fflush | Flushes the output to a file, returns bool]
  1563. fflush(|resource handle)
  1564. [fgetc | Gets character from file pointer, returns string]
  1565. fgetc(|resource handle)
  1566. [fgetcsv | Gets line from file pointer and parse for CSV fields, returns array]
  1567. fgetcsv(|resource handle, int length, [string delimiter], [string enclosure])
  1568. [fgets | Gets line from file pointer, returns string]
  1569. fgets(|resource handle, [int length])
  1570. [fgetss | Gets line from file pointer and strip HTML tags, returns string]
  1571. fgetss(|resource handle, int length, [string allowable_tags])
  1572. [file_exists | Checks whether a file or directory exists, returns bool]
  1573. file_exists(|string filename)
  1574. [file_get_contents | Reads entire file into a string, returns string]
  1575. file_get_contents(|string filename, [int use_include_path], [resource context])
  1576. [file_put_contents | Write a string to a file, returns int]
  1577. file_put_contents(|string filename, string data, [int flags], [resource context])
  1578. [file | Reads entire file into an array, returns array]
  1579. file(|string filename, [int use_include_path], [resource context])
  1580. [fileatime | Gets last access time of file, returns int]
  1581. fileatime(|string filename)
  1582. [filectime | Gets inode change time of file, returns int]
  1583. filectime(|string filename)
  1584. [filegroup | Gets file group, returns int]
  1585. filegroup(|string filename)
  1586. [fileinode | Gets file inode, returns int]
  1587. fileinode(|string filename)
  1588. [filemtime | Gets file modification time, returns int]
  1589. filemtime(|string filename)
  1590. [fileowner | Gets file owner, returns int]
  1591. fileowner(|string filename)
  1592. [fileperms | Gets file permissions, returns int]
  1593. fileperms(|string filename)
  1594. [filesize | Gets file size, returns int]
  1595. filesize(|string filename)
  1596. [filetype | Gets file type, returns string]
  1597. filetype(|string filename)
  1598. [flock | Portable advisory file locking, returns bool]
  1599. flock(|resource handle, int operation, [int &wouldblock])
  1600. [fnmatch | Match filename against a pattern, returns array]
  1601. fnmatch(|string pattern, string string, [int flags])
  1602. [fopen | Opens file or URL, returns resource]
  1603. fopen(|string filename, string mode, [int use_include_path], [resource zcontext])
  1604. [fpassthru | Output all remaining data on a file pointer, returns int]
  1605. fpassthru(|resource handle)
  1606. [fputs | Alias of fwrite]
  1607. [fread | Binary-safe file read, returns string]
  1608. fread(|resource handle, int length)
  1609. [fscanf | Parses input from a file according to a format, returns mixed]
  1610. fscanf(|resource handle, string format, [string var1])
  1611. [fseek | Seeks on a file pointer, returns int]
  1612. fseek(|resource handle, int offset, [int whence])
  1613. [fstat | Gets information about a file using an open file pointer, returns array]
  1614. fstat(|resource handle)
  1615. [ftell | Tells file pointer read/write position, returns int]
  1616. ftell(|resource handle)
  1617. [ftruncate | Truncates a file to a given length, returns bool]
  1618. ftruncate(|resource handle, int size)
  1619. [fwrite | Binary-safe file write, returns int]
  1620. fwrite(|resource handle, string string, [int length])
  1621. [glob | Find pathnames matching a pattern, returns array]
  1622. glob(|string pattern, [int flags])
  1623. [is_dir | Tells whether the filename is a directory, returns bool]
  1624. is_dir(|string filename)
  1625. [is_executable | Tells whether the filename is executable, returns bool]
  1626. is_executable(|string filename)
  1627. [is_file | Tells whether the filename is a regular file, returns bool]
  1628. is_file(|string filename)
  1629. [is_link | Tells whether the filename is a symbolic link, returns bool]
  1630. is_link(|string filename)
  1631. [is_readable | Tells whether the filename is readable, returns bool]
  1632. is_readable(|string filename)
  1633. [is_uploaded_file | Tells whether the file was uploaded via HTTP POST, returns bool]
  1634. is_uploaded_file(|string filename)
  1635. [is_writable | Tells whether the filename is writable, returns bool]
  1636. is_writable(|string filename)
  1637. [is_writeable | Alias of is_writable]
  1638. [link | Create a hard link, returns bool]
  1639. link(|string target, string link)
  1640. [linkinfo | Gets information about a link, returns int]
  1641. linkinfo(|string path)
  1642. [lstat | Gives information about a file or symbolic link, returns array]
  1643. lstat(|string filename)
  1644. [mkdir | Makes directory, returns bool]
  1645. mkdir(|string pathname, [int mode])
  1646. [move_uploaded_file | Moves an uploaded file to a new location, returns bool]
  1647. move_uploaded_file(|string filename, string destination)
  1648. [parse_ini_file | Parse a configuration file, returns array]
  1649. parse_ini_file(|string filename, [bool process_sections])
  1650. [pathinfo | Returns information about a file path, returns array]
  1651. pathinfo(|string path)
  1652. [pclose | Closes process file pointer, returns int]
  1653. pclose(|resource handle)
  1654. [popen | Opens process file pointer, returns resource]
  1655. popen(|string command, string mode)
  1656. [readfile | Outputs a file, returns int]
  1657. readfile(|string filename, [bool use_include_path], [resource context])
  1658. [readlink | Returns the target of a symbolic link, returns string]
  1659. readlink(|string path)
  1660. [realpath | Returns canonicalized absolute pathname, returns string]
  1661. realpath(|string path)
  1662. [rename | Renames a file, returns bool]
  1663. rename(|string oldname, string newname)
  1664. [rewind | Rewind the position of a file pointer, returns bool]
  1665. rewind(|resource handle)
  1666. [rmdir | Removes directory, returns bool]
  1667. rmdir(|string dirname)
  1668. [set_file_buffer | Alias of stream_set_write_buffer]
  1669. [stat | Gives information about a file, returns array]
  1670. stat(|string filename)
  1671. [symlink | Creates a symbolic link, returns bool]
  1672. symlink(|string target, string link)
  1673. [tempnam | Create file with unique file name, returns string]
  1674. tempnam(|string dir, string prefix)
  1675. [tmpfile | Creates a temporary file, returns resource]
  1676. tmpfile()|
  1677. [touch | Sets access and modification time of file, returns bool]
  1678. touch(|string filename, [int time], [int atime])
  1679. [umask | Changes the current umask, returns int]
  1680. umask(|[int mask])
  1681. [unlink | Deletes a file, returns bool]
  1682. unlink(|string filename)
  1683. ; -----------------------------------------------------------------------------
  1684. ; FDF - Forms Data Format functions
  1685. ; -----------------------------------------------------------------------------
  1686. [fdf_add_doc_javascript | Adds javascript code to the FDF document, returns bool]
  1687. fdf_add_doc_javascript(|resource fdfdoc, string script_name, string script_code)
  1688. [fdf_add_template | Adds a template into the FDF document, returns bool]
  1689. fdf_add_template(|resource fdfdoc, int newpage, string filename, string template, int rename)
  1690. [fdf_close | Close an FDF document, returns bool]
  1691. fdf_close(|resource fdf_document)
  1692. [fdf_create | Create a new FDF document, returns resource]
  1693. fdf_create()|
  1694. [fdf_enum_values | Call a user defined function for each document value, returns bool]
  1695. fdf_enum_values(|resource fdfdoc, callback function, [mixed userdata])
  1696. [fdf_errno | Return error code for last fdf operation, returns int]
  1697. fdf_errno()|
  1698. [fdf_error | Return error description for fdf error code, returns string]
  1699. fdf_error(|[int error_code])
  1700. [fdf_get_ap | Get the appearance of a field, returns bool]
  1701. fdf_get_ap(|resource fdf_document, string field, int face, string filename)
  1702. [fdf_get_attachment | Extracts uploaded file embedded in the FDF, returns array]
  1703. fdf_get_attachment(|resource fdf_document, string fieldname, string savepath)
  1704. [fdf_get_encoding | Get the value of the /Encoding key, returns string]
  1705. fdf_get_encoding(|resource fdf_document)
  1706. [fdf_get_file | Get the value of the /F key, returns string]
  1707. fdf_get_file(|resource fdf_document)
  1708. [fdf_get_flags | Gets the flags of a field, returns ]
  1709. fdf_get_flags()|
  1710. [fdf_get_opt | Gets a value from the opt array of a field, returns mixed]
  1711. fdf_get_opt(|resource fdfdof, string fieldname, [int element])
  1712. [fdf_get_status | Get the value of the /STATUS key, returns string]
  1713. fdf_get_status(|resource fdf_document)
  1714. [fdf_get_value | Get the value of a field, returns string]
  1715. fdf_get_value(|resource fdf_document, string fieldname, [int which])
  1716. [fdf_get_version | Gets version number for FDF api or file, returns string]
  1717. fdf_get_version(|[resource fdf_document])
  1718. [fdf_header | Sets FDF-specific output headers, returns bool]
  1719. fdf_header()|
  1720. [fdf_next_field_name | Get the next field name, returns string]
  1721. fdf_next_field_name(|resource fdf_document, [string fieldname])
  1722. [fdf_open_string | Read a FDF document from a string, returns resource]
  1723. fdf_open_string(|string fdf_data)
  1724. [fdf_open | Open a FDF document, returns resource]
  1725. fdf_open(|string filename)
  1726. [fdf_remove_item | Sets target frame for form, returns bool]
  1727. fdf_remove_item(|resource fdfdoc, string fieldname, int item)
  1728. [fdf_save_string | Returns the FDF document as a string, returns string]
  1729. fdf_save_string(|resource fdf_document)
  1730. [fdf_save | Save a FDF document, returns bool]
  1731. fdf_save(|resource fdf_document, [string filename])
  1732. [fdf_set_ap | Set the appearance of a field, returns bool]
  1733. fdf_set_ap(|resource fdf_document, string field_name, int face, string filename, int page_number)
  1734. [fdf_set_encoding | Sets FDF character encoding, returns bool]
  1735. fdf_set_encoding(|resource fdf_document, string encoding)
  1736. [fdf_set_file | Set PDF document to display FDF data in, returns bool]
  1737. fdf_set_file(|resource fdf_document, string url, [string target_frame])
  1738. [fdf_set_flags | Sets a flag of a field, returns bool]
  1739. fdf_set_flags(|resource fdf_document, string fieldname, int whichFlags, int newFlags)
  1740. [fdf_set_javascript_action | Sets an javascript action of a field, returns bool]
  1741. fdf_set_javascript_action(|resource fdf_document, string fieldname, int trigger, string script)
  1742. [fdf_set_opt | Sets an option of a field, returns bool]
  1743. fdf_set_opt(|resource fdf_document, string fieldname, int element, string str1, string str2)
  1744. [fdf_set_status | Set the value of the /STATUS key, returns bool]
  1745. fdf_set_status(|resource fdf_document, string status)
  1746. [fdf_set_submit_form_action | Sets a submit form action of a field, returns bool]
  1747. fdf_set_submit_form_action(|resource fdf_document, string fieldname, int trigger, string script, int flags)
  1748. [fdf_set_target_frame | Set target frame for form display, returns bool]
  1749. fdf_set_target_frame(|resource fdf_document, string frame_name)
  1750. [fdf_set_value | Set the value of a field, returns bool]
  1751. fdf_set_value(|resource fdf_document, string fieldname, mixed value, [int isName])
  1752. [fdf_set_version | Sets version number for a FDF file, returns string]
  1753. fdf_set_version(|resource fdf_document, string version)
  1754. ; -----------------------------------------------------------------------------
  1755. ; FriBiDi - FriBiDi functions
  1756. ; -----------------------------------------------------------------------------
  1757. [fribidi_log2vis | Convert a logical string to a visual one, returns string]
  1758. fribidi_log2vis(|string str, string direction, int charset)
  1759. ; -----------------------------------------------------------------------------
  1760. ; FTP - FTP functions
  1761. ; -----------------------------------------------------------------------------
  1762. [ftp_alloc | Allocates space for a file to be uploaded., returns bool]
  1763. ftp_alloc(|resource ftp_stream, int filesize, [string &result])
  1764. [ftp_cdup | Changes to the parent directory, returns bool]
  1765. ftp_cdup(|resource ftp_stream)
  1766. [ftp_chdir | Changes directories on a FTP server, returns bool]
  1767. ftp_chdir(|resource ftp_stream, string directory)
  1768. [ftp_chmod | Set permissions on a file via FTP, returns string]
  1769. ftp_chmod(|resource ftp_stream, int mode, string filename)
  1770. [ftp_close | Closes an FTP connection, returns void]
  1771. ftp_close(|resource ftp_stream)
  1772. [ftp_connect | Opens an FTP connection, returns resource]
  1773. ftp_connect(|string host, [int port], [int timeout])
  1774. [ftp_delete | Deletes a file on the FTP server, returns bool]
  1775. ftp_delete(|resource ftp_stream, string path)
  1776. [ftp_exec | Requests execution of a program on the FTP server, returns bool]
  1777. ftp_exec(|resource ftp_stream, string command)
  1778. [ftp_fget | Downloads a file from the FTP server and saves to an open file, returns bool]
  1779. ftp_fget(|resource ftp_stream, resource handle, string remote_file, int mode, [int resumepos])
  1780. [ftp_fput | Uploads from an open file to the FTP server, returns bool]
  1781. ftp_fput(|resource ftp_stream, string remote_file, resource handle, int mode, [int startpos])
  1782. [ftp_get_option | Retrieves various runtime behaviours of the current FTP stream, returns mixed]
  1783. ftp_get_option(|resource ftp_stream, int option)
  1784. [ftp_get | Downloads a file from the FTP server, returns bool]
  1785. ftp_get(|resource ftp_stream, string local_file, string remote_file, int mode, [int resumepos])
  1786. [ftp_login | Logs in to an FTP connection, returns bool]
  1787. ftp_login(|resource ftp_stream, string username, string password)
  1788. [ftp_mdtm | Returns the last modified time of the given file, returns int]
  1789. ftp_mdtm(|resource ftp_stream, string remote_file)
  1790. [ftp_mkdir | Creates a directory, returns string]
  1791. ftp_mkdir(|resource ftp_stream, string directory)
  1792. [ftp_nb_continue | Continues retrieving/sending a file (non-blocking), returns int]
  1793. ftp_nb_continue(|resource ftp_stream)
  1794. [ftp_nb_fget | Retrieves a file from the FTP server and writes it to an open file (non-blocking), returns int]
  1795. ftp_nb_fget(|resource ftp_stream, resource handle, string remote_file, int mode, [int resumepos])
  1796. [ftp_nb_fput | Stores a file from an open file to the FTP server (non-blocking), returns int]
  1797. ftp_nb_fput(|resource ftp_stream, string remote_file, resource handle, int mode, [int startpos])
  1798. [ftp_nb_get | Retrieves a file from the FTP server and writes it to a local file (non-blocking), returns int]
  1799. ftp_nb_get(|resource ftp_stream, string local_file, string remote_file, int mode, [int resumepos])
  1800. [ftp_nb_put | Stores a file on the FTP server (non-blocking), returns int]
  1801. ftp_nb_put(|resource ftp_stream, string remote_file, string local_file, int mode, [int startpos])
  1802. [ftp_nlist | Returns a list of files in the given directory, returns array]
  1803. ftp_nlist(|resource ftp_stream, string directory)
  1804. [ftp_pasv | Turns passive mode on or off, returns bool]
  1805. ftp_pasv(|resource ftp_stream, bool pasv)
  1806. [ftp_put | Uploads a file to the FTP server, returns bool]
  1807. ftp_put(|resource ftp_stream, string remote_file, string local_file, int mode, [int startpos])
  1808. [ftp_pwd | Returns the current directory name, returns string]
  1809. ftp_pwd(|resource ftp_stream)
  1810. [ftp_quit | Alias of ftp_close]
  1811. [ftp_raw | Sends an arbitrary command to an FTP server, returns array]
  1812. ftp_raw(|resource ftp_stream, string command)
  1813. [ftp_rawlist | Returns a detailed list of files in the given directory, returns array]
  1814. ftp_rawlist(|resource ftp_stream, string directory)
  1815. [ftp_rename | Renames a file on the FTP server, returns bool]
  1816. ftp_rename(|resource ftp_stream, string from, string to)
  1817. [ftp_rmdir | Removes a directory, returns bool]
  1818. ftp_rmdir(|resource ftp_stream, string directory)
  1819. [ftp_set_option | Set miscellaneous runtime FTP options, returns bool]
  1820. ftp_set_option(|resource ftp_stream, int option, mixed value)
  1821. [ftp_site | Sends a SITE command to the server, returns bool]
  1822. ftp_site(|resource ftp_stream, string cmd)
  1823. [ftp_size | Returns the size of the given file, returns int]
  1824. ftp_size(|resource ftp_stream, string remote_file)
  1825. [ftp_ssl_connect | Opens an Secure SSL-FTP connection, returns resource]
  1826. ftp_ssl_connect(|string host, [int port], [int timeout])
  1827. [ftp_systype | Returns the system type identifier of the remote FTP server, returns string]
  1828. ftp_systype(|resource ftp_stream)
  1829. ; -----------------------------------------------------------------------------
  1830. ; Function handling - Function Handling functions
  1831. ; -----------------------------------------------------------------------------
  1832. [call_user_func_array | Call a user function given with an array of parameters, returns mixed]
  1833. call_user_func_array(|callback function, [array param_arr])
  1834. [call_user_func | Call a user function given by the first parameter, returns mixed]
  1835. call_user_func(|callback function, [mixed parameter], [mixed ...])
  1836. [create_function | Create an anonymous (lambda-style) function, returns string]
  1837. create_function(|string args, string code)
  1838. [func_get_arg | Return an item from the argument list, returns mixed]
  1839. func_get_arg(|int arg_num)
  1840. [func_get_args | Returns an array comprising a function's argument list, returns array]
  1841. func_get_args()|
  1842. [func_num_args | Returns the number of arguments passed to the function, returns int]
  1843. func_num_args()|
  1844. [function_exists | Return TRUE if the given function has been defined, returns bool]
  1845. function_exists(|string function_name)
  1846. [get_defined_functions | Returns an array of all defined functions, returns array]
  1847. get_defined_functions()|
  1848. [register_shutdown_function | Register a function for execution on shutdown, returns void]
  1849. register_shutdown_function(|callback function)
  1850. [register_tick_function | Register a function for execution on each tick, returns void]
  1851. register_tick_function(|callback function, [mixed arg])
  1852. [unregister_tick_function | De-register a function for execution on each tick, returns void]
  1853. unregister_tick_function(|string function_name)
  1854. ; -----------------------------------------------------------------------------
  1855. ; gettext - Gettext
  1856. ; -----------------------------------------------------------------------------
  1857. [bind_textdomain_codeset | Specify the character encoding in which the messages from the DOMAIN message catalog will be returned, returns string]
  1858. bind_textdomain_codeset(|string domain, string codeset)
  1859. [bindtextdomain | Sets the path for a domain, returns string]
  1860. bindtextdomain(|string domain, string directory)
  1861. [dcgettext | Overrides the domain for a single lookup, returns string]
  1862. dcgettext(|string domain, string message, int category)
  1863. [dcngettext | Plural version of dcgettext, returns string]
  1864. dcngettext(|string domain, string msgid1, string msgid2, int n, int category)
  1865. [dgettext | Override the current domain, returns string]
  1866. dgettext(|string domain, string message)
  1867. [dngettext | Plural version of dgettext, returns string]
  1868. dngettext(|string domain, string msgid1, string msgid2, int n)
  1869. [gettext | Lookup a message in the current domain, returns string]
  1870. gettext(|string message)
  1871. [ngettext | Plural version of gettext, returns string]
  1872. ngettext(|string msgid1, string msgid2, int n)
  1873. [textdomain | Sets the default domain, returns string]
  1874. textdomain(|string text_domain)
  1875. ; -----------------------------------------------------------------------------
  1876. ; GMP - GMP functions
  1877. ; -----------------------------------------------------------------------------
  1878. [gmp_abs | Absolute value, returns resource]
  1879. gmp_abs(|resource a)
  1880. [gmp_add | Add numbers, returns resource]
  1881. gmp_add(|resource a, resource b)
  1882. [gmp_and | Logical AND, returns resource]
  1883. gmp_and(|resource a, resource b)
  1884. [gmp_clrbit | Clear bit, returns resource]
  1885. gmp_clrbit(|resource &a, int index)
  1886. [gmp_cmp | Compare numbers, returns int]
  1887. gmp_cmp(|resource a, resource b)
  1888. [gmp_com | Calculates one's complement of a, returns resource]
  1889. gmp_com(|resource a)
  1890. [gmp_div_q | Divide numbers, returns resource]
  1891. gmp_div_q(|resource a, resource b, [int round])
  1892. [gmp_div_qr | Divide numbers and get quotient and remainder, returns array]
  1893. gmp_div_qr(|resource n, resource d, [int round])
  1894. [gmp_div_r | Remainder of the division of numbers, returns resource]
  1895. gmp_div_r(|resource n, resource d, [int round])
  1896. [gmp_div | Alias of gmp_div_q]
  1897. [gmp_divexact | Exact division of numbers, returns resource]
  1898. gmp_divexact(|resource n, resource d)
  1899. [gmp_fact | Factorial, returns resource]
  1900. gmp_fact(|int a)
  1901. [gmp_gcd | Calculate GCD, returns resource]
  1902. gmp_gcd(|resource a, resource b)
  1903. [gmp_gcdext | Calculate GCD and multipliers, returns array]
  1904. gmp_gcdext(|resource a, resource b)
  1905. [gmp_hamdist | Hamming distance, returns int]
  1906. gmp_hamdist(|resource a, resource b)
  1907. [gmp_init | Create GMP number, returns resource]
  1908. gmp_init(|mixed number)
  1909. [gmp_intval | Convert GMP number to integer, returns int]
  1910. gmp_intval(|resource gmpnumber)
  1911. [gmp_invert | Inverse by modulo, returns resource]
  1912. gmp_invert(|resource a, resource b)
  1913. [gmp_jacobi | Jacobi symbol, returns int]
  1914. gmp_jacobi(|resource a, resource p)
  1915. [gmp_legendre | Legendre symbol, returns int]
  1916. gmp_legendre(|resource a, resource p)
  1917. [gmp_mod | Modulo operation, returns resource]
  1918. gmp_mod(|resource n, resource d)
  1919. [gmp_mul | Multiply numbers, returns resource]
  1920. gmp_mul(|resource a, resource b)
  1921. [gmp_neg | Negate number, returns resource]
  1922. gmp_neg(|resource a)
  1923. [gmp_or | Logical OR, returns resource]
  1924. gmp_or(|resource a, resource b)
  1925. [gmp_perfect_square | Perfect square check, returns bool]
  1926. gmp_perfect_square(|resource a)
  1927. [gmp_popcount | Population count, returns int]
  1928. gmp_popcount(|resource a)
  1929. [gmp_pow | Raise number into power, returns resource]
  1930. gmp_pow(|resource base, int exp)
  1931. [gmp_powm | Raise number into power with modulo, returns resource]
  1932. gmp_powm(|resource base, resource exp, resource mod)
  1933. [gmp_prob_prime | Check if number is "probably prime", returns int]
  1934. gmp_prob_prime(|resource a, [int reps])
  1935. [gmp_random | Random number, returns resource]
  1936. gmp_random(|int limiter)
  1937. [gmp_scan0 | Scan for 0, returns int]
  1938. gmp_scan0(|resource a, int start)
  1939. [gmp_scan1 | Scan for 1, returns int]
  1940. gmp_scan1(|resource a, int start)
  1941. [gmp_setbit | Set bit, returns resource]
  1942. gmp_setbit(|resource &a, int index, [bool set_clear])
  1943. [gmp_sign | Sign of number, returns int]
  1944. gmp_sign(|resource a)
  1945. [gmp_sqrt | Square root, returns resource]
  1946. gmp_sqrt(|resource a)
  1947. [gmp_sqrtrm | Square root with remainder, returns array]
  1948. gmp_sqrtrm(|resource a)
  1949. [gmp_strval | Convert GMP number to string, returns string]
  1950. gmp_strval(|resource gmpnumber, [int base])
  1951. [gmp_sub | Subtract numbers, returns resource]
  1952. gmp_sub(|resource a, resource b)
  1953. [gmp_xor | Logical XOR, returns resource]
  1954. gmp_xor(|resource a, resource b)
  1955. ; -----------------------------------------------------------------------------
  1956. ; HTTP - HTTP functions
  1957. ; -----------------------------------------------------------------------------
  1958. [header | Send a raw HTTP header, returns int]
  1959. header(|string string, [bool replace], [int http_response_code])
  1960. [headers_list | Returns a list of response headers sent (or ready to send), returns array]
  1961. headers_list()|
  1962. [headers_sent | Checks if or where headers have been sent, returns bool]
  1963. headers_sent(|[string &file], [int &line])
  1964. [setcookie | Send a cookie, returns bool]
  1965. setcookie(|string name, [string value], [int expire], [string path], [string domain], [int secure])
  1966. ; -----------------------------------------------------------------------------
  1967. ; Hyperwave - Hyperwave functions
  1968. ; -----------------------------------------------------------------------------
  1969. [hw_Array2Objrec | convert attributes from object array to object record, returns string]
  1970. hw_array2objrec(|array object_array)
  1971. [hw_changeobject | Changes attributes of an object (obsolete), returns void]
  1972. hw_changeobject(|int link, int objid, array attributes)
  1973. [hw_Children | object ids of children, returns array]
  1974. hw_children(|int connection, int objectID)
  1975. [hw_ChildrenObj | object records of children, returns array]
  1976. hw_childrenobj(|int connection, int objectID)
  1977. [hw_Close | closes the Hyperwave connection, returns int]
  1978. hw_close(|int connection)
  1979. [hw_Connect | opens a connection, returns int]
  1980. hw_connect(|string host, int port, string username, string password)
  1981. [hw_connection_info | Prints information about the connection to Hyperwave server, returns void]
  1982. hw_connection_info(|int link)
  1983. [hw_cp | Copies objects, returns int]
  1984. hw_cp(|int connection, array object_id_array, int destination_id)
  1985. [hw_Deleteobject | deletes object, returns int]
  1986. hw_deleteobject(|int connection, int object_to_delete)
  1987. [hw_DocByAnchor | object id object belonging to anchor, returns int]
  1988. hw_docbyanchor(|int connection, int anchorID)
  1989. [hw_DocByAnchorObj | object record object belonging to anchor, returns string]
  1990. hw_docbyanchorobj(|int connection, int anchorID)
  1991. [hw_Document_Attributes | object record of hw_document, returns string]
  1992. hw_document_attributes(|int hw_document)
  1993. [hw_Document_BodyTag | body tag of hw_document, returns string]
  1994. hw_document_bodytag(|int hw_document)
  1995. [hw_Document_Content | returns content of hw_document, returns string]
  1996. hw_document_content(|int hw_document)
  1997. [hw_Document_SetContent | sets/replaces content of hw_document, returns string]
  1998. hw_document_setcontent(|int hw_document, string content)
  1999. [hw_Document_Size | size of hw_document, returns int]
  2000. hw_document_size(|int hw_document)
  2001. [hw_dummy | Hyperwave dummy function, returns string]
  2002. hw_dummy(|int link, int id, int msgid)
  2003. [hw_EditText | retrieve text document, returns int]
  2004. hw_edittext(|int connection, int hw_document)
  2005. [hw_Error | error number, returns int]
  2006. hw_error(|int connection)
  2007. [hw_ErrorMsg | returns error message, returns string]
  2008. hw_errormsg(|int connection)
  2009. [hw_Free_Document | frees hw_document, returns int]
  2010. hw_free_document(|int hw_document)
  2011. [hw_GetAnchors | object ids of anchors of document, returns array]
  2012. hw_getanchors(|int connection, int objectID)
  2013. [hw_GetAnchorsObj | object records of anchors of document, returns array]
  2014. hw_getanchorsobj(|int connection, int objectID)
  2015. [hw_GetAndLock | return bject record and lock object, returns string]
  2016. hw_getandlock(|int connection, int objectID)
  2017. [hw_GetChildColl | object ids of child collections, returns array]
  2018. hw_getchildcoll(|int connection, int objectID)
  2019. [hw_GetChildCollObj | object records of child collections, returns array]
  2020. hw_getchildcollobj(|int connection, int objectID)
  2021. [hw_GetChildDocColl | object ids of child documents of collection, returns array]
  2022. hw_getchilddoccoll(|int connection, int objectID)
  2023. [hw_GetChildDocCollObj | object records of child documents of collection, returns array]
  2024. hw_getchilddoccollobj(|int connection, int objectID)
  2025. [hw_GetObject | object record, returns array]
  2026. hw_getobject(|int connection, mixed objectID, string query)
  2027. [hw_GetObjectByQuery | search object, returns array]
  2028. hw_getobjectbyquery(|int connection, string query, int max_hits)
  2029. [hw_GetObjectByQueryColl | search object in collection, returns array]
  2030. hw_getobjectbyquerycoll(|int connection, int objectID, string query, int max_hits)
  2031. [hw_GetObjectByQueryCollObj | search object in collection, returns array]
  2032. hw_getobjectbyquerycollobj(|int connection, int objectID, string query, int max_hits)
  2033. [hw_GetObjectByQueryObj | search object, returns array]
  2034. hw_getobjectbyqueryobj(|int connection, string query, int max_hits)
  2035. [hw_GetParents | object ids of parents, returns array]
  2036. hw_getparents(|int connection, int objectID)
  2037. [hw_GetParentsObj | object records of parents, returns array]
  2038. hw_getparentsobj(|int connection, int objectID)
  2039. [hw_getrellink | Get link from source to dest relative to rootid, returns string]
  2040. hw_getrellink(|int link, int rootid, int sourceid, int destid)
  2041. [hw_GetRemote | Gets a remote document, returns int]
  2042. hw_getremote(|int connection, int objectID)
  2043. [hw_getremotechildren | Gets children of remote document, returns int]
  2044. hw_getremotechildren(|int connection, string object_record)
  2045. [hw_GetSrcByDestObj | Returns anchors pointing at object, returns array]
  2046. hw_getsrcbydestobj(|int connection, int objectID)
  2047. [hw_GetText | retrieve text document, returns int]
  2048. hw_gettext(|int connection, int objectID, [mixed rootID/prefix])
  2049. [hw_getusername | name of currently logged in user, returns string]
  2050. hw_getusername(|int connection)
  2051. [hw_Identify | identifies as user, returns int]
  2052. hw_identify(|string username, string password)
  2053. [hw_InCollections | check if object ids in collections, returns array]
  2054. hw_incollections(|int connection, array object_id_array, array collection_id_array, int return_collections)
  2055. [hw_Info | info about connection, returns string]
  2056. hw_info(|int connection)
  2057. [hw_InsColl | insert collection, returns int]
  2058. hw_inscoll(|int connection, int objectID, array object_array)
  2059. [hw_InsDoc | insert document, returns int]
  2060. hw_insdoc(|int connection, int parentID, string object_record, string text)
  2061. [hw_insertanchors | Inserts only anchors into text, returns string]
  2062. hw_insertanchors(|int hwdoc, array anchorecs, array dest, [array urlprefixes])
  2063. [hw_InsertDocument | upload any document, returns int]
  2064. hw_insertdocument(|int connection, int parent_id, int hw_document)
  2065. [hw_InsertObject | inserts an object record, returns int]
  2066. hw_insertobject(|int connection, string object_rec, string parameter)
  2067. [hw_mapid | Maps global id on virtual local id, returns int]
  2068. hw_mapid(|int connection, int server_id, int object_id)
  2069. [hw_Modifyobject | modifies object record, returns int]
  2070. hw_modifyobject(|int connection, int object_to_change, array remove, array add, int mode)
  2071. [hw_mv | Moves objects, returns int]
  2072. hw_mv(|int connection, array object_id_array, int source_id, int destination_id)
  2073. [hw_New_Document | create new document, returns int]
  2074. hw_new_document(|string object_record, string document_data, int document_size)
  2075. [hw_objrec2array | Convert attributes from object record to object array, returns array]
  2076. hw_objrec2array(|string object_record, [array format])
  2077. [hw_Output_Document | prints hw_document, returns int]
  2078. hw_output_document(|int hw_document)
  2079. [hw_pConnect | make a persistent database connection, returns int]
  2080. hw_pconnect(|string host, int port, string username, string password)
  2081. [hw_PipeDocument | retrieve any document, returns int]
  2082. hw_pipedocument(|int connection, int objectID)
  2083. [hw_Root | root object id, returns int]
  2084. hw_root(| )
  2085. [hw_setlinkroot | Set the id to which links are calculated, returns void]
  2086. hw_setlinkroot(|int link, int rootid)
  2087. [hw_stat | Returns status string, returns string]
  2088. hw_stat(|int link)
  2089. [hw_Unlock | unlock object, returns int]
  2090. hw_unlock(|int connection, int objectID)
  2091. [hw_Who | List of currently logged in users, returns int]
  2092. hw_who(|int connection)
  2093. ; -----------------------------------------------------------------------------
  2094. ; Hyperwave API - Hyperwave API functions
  2095. ; -----------------------------------------------------------------------------
  2096. [hw_api_attribute->key | Returns key of the attribute, returns string]
  2097. key(|void )
  2098. [hw_api_attribute->langdepvalue | Returns value for a given language, returns string]
  2099. langdepvalue(|string language)
  2100. [hw_api_attribute->value | Returns value of the attribute, returns string]
  2101. value(|void )
  2102. [hw_api_attribute->values | Returns all values of the attribute, returns array]
  2103. values(|void )
  2104. [hw_api_attribute | Creates instance of class hw_api_attribute, returns object]
  2105. attribute(|[string name], [string value])
  2106. [hw_api->checkin | Checks in an object, returns object]
  2107. checkin(|array parameter)
  2108. [hw_api->checkout | Checks out an object, returns object]
  2109. checkout(|array parameter)
  2110. [hw_api->children | Returns children of an object, returns array]
  2111. children(|array parameter)
  2112. [hw_api_content->mimetype | Returns mimetype, returns string]
  2113. mimetype(|void )
  2114. [hw_api_content->read | Read content, returns string]
  2115. read(|string buffer, integer len)
  2116. [hw_api->content | Returns content of an object, returns object]
  2117. content(|array parameter)
  2118. [hw_api->copy | Copies physically, returns object]
  2119. copy(|array parameter)
  2120. [hw_api->dbstat | Returns statistics about database server, returns object]
  2121. dbstat(|array parameter)
  2122. [hw_api->dcstat | Returns statistics about document cache server, returns object]
  2123. dcstat(|array parameter)
  2124. [hw_api->dstanchors | Returns a list of all destination anchors, returns object]
  2125. dstanchors(|array parameter)
  2126. [hw_api->dstofsrcanchors | Returns destination of a source anchor, returns object]
  2127. dstofsrcanchors(|array parameter)
  2128. [hw_api_error->count | Returns number of reasons, returns int]
  2129. count(|void )
  2130. [hw_api_error->reason | Returns reason of error, returns object]
  2131. reason(|void )
  2132. [hw_api->find | Search for objects, returns array]
  2133. find(|array parameter)
  2134. [hw_api->ftstat | Returns statistics about fulltext server, returns object]
  2135. ftstat(|array parameter)
  2136. [hwapi_hgcsp | Returns object of class hw_api, returns object]
  2137. hwapi_hgcsp(|string hostname, [int port])
  2138. [hw_api->hwstat | Returns statistics about Hyperwave server, returns object]
  2139. hwstat(|array parameter)
  2140. [hw_api->identify | Log into Hyperwave Server, returns object]
  2141. identify(|array parameter)
  2142. [hw_api->info | Returns information about server configuration, returns object]
  2143. info(|array parameter)
  2144. [hw_api->insert | Inserts a new object, returns object]
  2145. insert(|array parameter)
  2146. [hw_api->insertanchor | Inserts a new object of type anchor, returns object]
  2147. insertanchor(|array parameter)
  2148. [hw_api->insertcollection | Inserts a new object of type collection, returns object]
  2149. insertcollection(|array parameter)
  2150. [hw_api->insertdocument | Inserts a new object of type document, returns object]
  2151. insertdocument(|array parameter)
  2152. [hw_api->link | Creates a link to an object, returns object]
  2153. link(|array parameter)
  2154. [hw_api->lock | Locks an object, returns object]
  2155. lock(|array parameter)
  2156. [hw_api->move | Moves object between collections, returns object]
  2157. move(|array parameter)
  2158. [hw_api_content | Create new instance of class hw_api_content, returns string]
  2159. content(|string content, string mimetype)
  2160. [hw_api_object->assign | Clones object, returns object]
  2161. assign(|array parameter)
  2162. [hw_api_object->attreditable | Checks whether an attribute is editable, returns bool]
  2163. attreditable(|array parameter)
  2164. [hw_api_object->count | Returns number of attributes, returns int]
  2165. count(|array parameter)
  2166. [hw_api_object->insert | Inserts new attribute, returns bool]
  2167. insert(|object attribute)
  2168. [hw_api_object | Creates a new instance of class hw_api_object, returns object]
  2169. hw_api_object(|array parameter)
  2170. [hw_api_object->remove | Removes attribute, returns bool]
  2171. remove(|string name)
  2172. [hw_api_object->title | Returns the title attribute, returns string]
  2173. title(|array parameter)
  2174. [hw_api_object->value | Returns value of attribute, returns string]
  2175. value(|string name)
  2176. [hw_api->object | Retrieve attribute information, returns object]
  2177. hw_api->object(|array parameter)
  2178. [hw_api->objectbyanchor | Returns the object an anchor belongs to, returns object]
  2179. objectbyanchor(|array parameter)
  2180. [hw_api->parents | Returns parents of an object, returns array]
  2181. parents(|array parameter)
  2182. [hw_api_reason->description | Returns description of reason, returns string]
  2183. description(|void )
  2184. [hw_api_reason->type | Returns type of reason, returns object]
  2185. type(|void )
  2186. [hw_api->remove | Delete an object, returns object]
  2187. remove(|array parameter)
  2188. [hw_api->replace | Replaces an object, returns object]
  2189. replace(|array parameter)
  2190. [hw_api->setcommitedversion | Commits version other than last version, returns object]
  2191. setcommitedversion(|array parameter)
  2192. [hw_api->srcanchors | Returns a list of all source anchors, returns object]
  2193. srcanchors(|array parameter)
  2194. [hw_api->srcsofdst | Returns source of a destination object, returns object]
  2195. srcsofdst(|array parameter)
  2196. [hw_api->unlock | Unlocks a locked object, returns object]
  2197. unlock(|array parameter)
  2198. [hw_api->user | Returns the own user object, returns object]
  2199. user(|array parameter)
  2200. [hw_api->userlist | Returns a list of all logged in users, returns object]
  2201. userlist(|array parameter)
  2202. ; -----------------------------------------------------------------------------
  2203. ; iconv - iconv functions
  2204. ; -----------------------------------------------------------------------------
  2205. [iconv_get_encoding | Get current setting for character encoding conversion, returns array]
  2206. iconv_get_encoding(|[string type])
  2207. [iconv_mime_decode | Decodes a mime header field, returns string]
  2208. iconv_mime_decode(|string encoded_string, [string charset])
  2209. [iconv_mime_encode | Composes a mime header field with field_name and field_value in a specified scheme, returns string]
  2210. iconv_mime_encode(|string field_name, string field_value, [array preference])
  2211. [iconv_set_encoding | Set current setting for character encoding conversion, returns bool]
  2212. iconv_set_encoding(|string type, string charset)
  2213. [iconv_strlen | Returns the character count of string, returns int]
  2214. iconv_strlen(|string str, [string charset])
  2215. [iconv_strpos | Finds position of first occurrence of a needle within a haystack., returns int]
  2216. iconv_strpos(|string haystack, string needle, int offset, [string charset])
  2217. [iconv_strrpos | Finds position of last occurrence of needle within part of haystack beginning with offset, returns string]
  2218. iconv_strrpos(|string haystack, string needle, [string charset])
  2219. [iconv_substr | Returns specified part of a string, returns string]
  2220. iconv_substr(|string str, int offset, [int length], [string charset])
  2221. [iconv | Convert string to requested character encoding, returns string]
  2222. iconv(|string in_charset, string out_charset, string str)
  2223. [ob_iconv_handler | Convert character encoding as output buffer handler, returns array]
  2224. ob_iconv_handler(|string contents, int status)
  2225. ; -----------------------------------------------------------------------------
  2226. ; Image - Image functions
  2227. ; -----------------------------------------------------------------------------
  2228. [exif_imagetype | Determine the type of an image, returns int]
  2229. exif_imagetype(|string filename)
  2230. [exif_read_data | Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras., returns array]
  2231. exif_read_data(|string filename, [string sections], [bool arrays], [bool thumbnail])
  2232. [exif_thumbnail | Retrieve the embedded thumbnail of a TIFF or JPEG image, returns string]
  2233. exif_thumbnail(|string filename, [int &width], [int &height], [int &imagetype])
  2234. [gd_info | Retrieve information about the currently installed GD library, returns array]
  2235. gd_info()|
  2236. [getimagesize | Get the size of an image, returns array]
  2237. getimagesize(|string filename, [array imageinfo])
  2238. [image_type_to_mime_type | Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype, returns string]
  2239. image_type_to_mime_type(|int imagetype)
  2240. [image2wbmp | Output image to browser or file, returns int]
  2241. image2wbmp(|resource image, [string filename], [int threshold])
  2242. [imagealphablending | Set the blending mode for an image, returns bool]
  2243. imagealphablending(|resource image, bool blendmode)
  2244. [imageantialias | Should antialias functions be used or not, returns bool]
  2245. imageantialias(|resource im, bool on)
  2246. [imagearc | Draw a partial ellipse, returns int]
  2247. imagearc(|resource image, int cx, int cy, int w, int h, int s, int e, int color)
  2248. [imagechar | Draw a character horizontally, returns int]
  2249. imagechar(|resource image, int font, int x, int y, string c, int color)
  2250. [imagecharup | Draw a character vertically, returns int]
  2251. imagecharup(|resource image, int font, int x, int y, string c, int color)
  2252. [imagecolorallocate | Allocate a color for an image, returns int]
  2253. imagecolorallocate(|resource image, int red, int green, int blue)
  2254. [imagecolorallocatealpha | Allocate a color for an image, returns int]
  2255. imagecolorallocatealpha(|resource image, int red, int green, int blue, int alpha)
  2256. [imagecolorat | Get the index of the color of a pixel, returns int]
  2257. imagecolorat(|resource image, int x, int y)
  2258. [imagecolorclosest | Get the index of the closest color to the specified color, returns int]
  2259. imagecolorclosest(|resource image, int red, int green, int blue)
  2260. [imagecolorclosestalpha | Get the index of the closest color to the specified color + alpha, returns int]
  2261. imagecolorclosestalpha(|resource image, int red, int green, int blue, int alpha)
  2262. [imagecolorclosesthwb | Get the index of the color which has the hue, white and blackness nearest to the given color, returns int]
  2263. imagecolorclosesthwb(|resource image, int red, int green, int blue)
  2264. [imagecolordeallocate | De-allocate a color for an image, returns int]
  2265. imagecolordeallocate(|resource image, int color)
  2266. [imagecolorexact | Get the index of the specified color, returns int]
  2267. imagecolorexact(|resource image, int red, int green, int blue)
  2268. [imagecolorexactalpha | Get the index of the specified color + alpha, returns int]
  2269. imagecolorexactalpha(|resource image, int red, int green, int blue, int alpha)
  2270. [imagecolormatch | Makes the colors of the palette version of an image more closely match the true color version, returns bool]
  2271. imagecolormatch(|resource image1, resource image2)
  2272. [imagecolorresolve | Get the index of the specified color or its closest possible alternative, returns int]
  2273. imagecolorresolve(|resource image, int red, int green, int blue)
  2274. [imagecolorresolvealpha | Get the index of the specified color + alpha or its closest possible alternative, returns int]
  2275. imagecolorresolvealpha(|resource image, int red, int green, int blue, int alpha)
  2276. [imagecolorset | Set the color for the specified palette index, returns bool]
  2277. imagecolorset(|resource image, int index, int red, int green, int blue)
  2278. [imagecolorsforindex | Get the colors for an index, returns array]
  2279. imagecolorsforindex(|resource image, int index)
  2280. [imagecolorstotal | Find out the number of colors in an image's palette, returns int]
  2281. imagecolorstotal(|resource image)
  2282. [imagecolortransparent | Define a color as transparent, returns int]
  2283. imagecolortransparent(|resource image, [int color])
  2284. [imagecopy | Copy part of an image, returns int]
  2285. imagecopy(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)
  2286. [imagecopymerge | Copy and merge part of an image, returns int]
  2287. imagecopymerge(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
  2288. [imagecopymergegray | Copy and merge part of an image with gray scale, returns int]
  2289. imagecopymergegray(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
  2290. [imagecopyresampled | Copy and resize part of an image with resampling, returns bool]
  2291. imagecopyresampled(|resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  2292. [imagecopyresized | Copy and resize part of an image, returns int]
  2293. imagecopyresized(|resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  2294. [imagecreate | Create a new palette based image, returns resource]
  2295. imagecreate(|int x_size, int y_size)
  2296. [imagecreatefromgd2 | Create a new image from GD2 file or URL, returns resource]
  2297. imagecreatefromgd2(|string filename)
  2298. [imagecreatefromgd2part | Create a new image from a given part of GD2 file or URL, returns resource]
  2299. imagecreatefromgd2part(|string filename, int srcX, int srcY, int width, int height)
  2300. [imagecreatefromgd | Create a new image from GD file or URL, returns resource]
  2301. imagecreatefromgd(|string filename)
  2302. [imagecreatefromgif | Create a new image from file or URL, returns resource]
  2303. imagecreatefromgif(|string filename)
  2304. [imagecreatefromjpeg | Create a new image from file or URL, returns resource]
  2305. imagecreatefromjpeg(|string filename)
  2306. [imagecreatefrompng | Create a new image from file or URL, returns resource]
  2307. imagecreatefrompng(|string filename)
  2308. [imagecreatefromstring | Create a new image from the image stream in the string, returns resource]
  2309. imagecreatefromstring(|string image)
  2310. [imagecreatefromwbmp | Create a new image from file or URL, returns resource]
  2311. imagecreatefromwbmp(|string filename)
  2312. [imagecreatefromxbm | Create a new image from file or URL, returns resource]
  2313. imagecreatefromxbm(|string filename)
  2314. [imagecreatefromxpm | Create a new image from file or URL, returns resource]
  2315. imagecreatefromxpm(|string filename)
  2316. [imagecreatetruecolor | Create a new true color image, returns resource]
  2317. imagecreatetruecolor(|int x_size, int y_size)
  2318. [imagedashedline | Draw a dashed line, returns int]
  2319. imagedashedline(|resource image, int x1, int y1, int x2, int y2, int color)
  2320. [imagedestroy | Destroy an image, returns int]
  2321. imagedestroy(|resource image)
  2322. [imageellipse | Draw an ellipse, returns int]
  2323. imageellipse(|resource image, int cx, int cy, int w, int h, int color)
  2324. [imagefill | Flood fill, returns int]
  2325. imagefill(|resource image, int x, int y, int color)
  2326. [imagefilledarc | Draw a partial ellipse and fill it, returns bool]
  2327. imagefilledarc(|resource image, int cx, int cy, int w, int h, int s, int e, int color, int style)
  2328. [imagefilledellipse | Draw a filled ellipse, returns bool]
  2329. imagefilledellipse(|resource image, int cx, int cy, int w, int h, int color)
  2330. [imagefilledpolygon | Draw a filled polygon, returns int]
  2331. imagefilledpolygon(|resource image, array points, int num_points, int color)
  2332. [imagefilledrectangle | Draw a filled rectangle, returns int]
  2333. imagefilledrectangle(|resource image, int x1, int y1, int x2, int y2, int color)
  2334. [imagefilltoborder | Flood fill to specific color, returns int]
  2335. imagefilltoborder(|resource image, int x, int y, int border, int color)
  2336. [imagefontheight | Get font height, returns int]
  2337. imagefontheight(|int font)
  2338. [imagefontwidth | Get font width, returns int]
  2339. imagefontwidth(|int font)
  2340. [imageftbbox | Give the bounding box of a text using fonts via freetype2, returns array]
  2341. imageftbbox(|int size, int angle, string font_file, string text, [array extrainfo])
  2342. [imagefttext | Write text to the image using fonts using FreeType 2, returns array]
  2343. imagefttext(|resource image, int size, int angle, int x, int y, int col, string font_file, string text, [array extrainfo])
  2344. [imagegammacorrect | Apply a gamma correction to a GD image, returns int]
  2345. imagegammacorrect(|resource image, float inputgamma, float outputgamma)
  2346. [imagegd2 | Output GD2 image, returns int]
  2347. imagegd2(|resource image, [string filename], [int chunk_size], [int type])
  2348. [imagegd | Output GD image to browser or file, returns int]
  2349. imagegd(|resource image, [string filename])
  2350. [imagegif | Output image to browser or file, returns int]
  2351. imagegif(|resource image, [string filename])
  2352. [imageinterlace | Enable or disable interlace, returns int]
  2353. imageinterlace(|resource image, [int interlace])
  2354. [imageistruecolor | Finds whether an image is a truecolor image., returns bool]
  2355. imageistruecolor(|resource image)
  2356. [imagejpeg | Output image to browser or file, returns int]
  2357. imagejpeg(|resource image, [string filename], [int quality])
  2358. [imageline | Draw a line, returns int]
  2359. imageline(|resource image, int x1, int y1, int x2, int y2, int color)
  2360. [imageloadfont | Load a new font, returns int]
  2361. imageloadfont(|string file)
  2362. [imagepalettecopy | Copy the palette from one image to another, returns int]
  2363. imagepalettecopy(|resource destination, resource source)
  2364. [imagepng | Output a PNG image to either the browser or a file, returns int]
  2365. imagepng(|resource image, [string filename])
  2366. [imagepolygon | Draw a polygon, returns int]
  2367. imagepolygon(|resource image, array points, int num_points, int color)
  2368. [imagepsbbox | Give the bounding box of a text rectangle using PostScript Type1 fonts, returns array]
  2369. imagepsbbox(|string text, int font, int size, [int space], [int tightness], [float angle])
  2370. [imagepscopyfont | Make a copy of an already loaded font for further modification, returns int]
  2371. imagepscopyfont(|int fontindex)
  2372. [imagepsencodefont | Change the character encoding vector of a font, returns int]
  2373. imagepsencodefont(|int font_index, string encodingfile)
  2374. [imagepsextendfont | Extend or condense a font, returns bool]
  2375. imagepsextendfont(|int font_index, float extend)
  2376. [imagepsfreefont | Free memory used by a PostScript Type 1 font, returns void]
  2377. imagepsfreefont(|int fontindex)
  2378. [imagepsloadfont | Load a PostScript Type 1 font from file, returns int]
  2379. imagepsloadfont(|string filename)
  2380. [imagepsslantfont | Slant a font, returns bool]
  2381. imagepsslantfont(|int font_index, float slant)
  2382. [imagepstext | To draw a text string over an image using PostScript Type1 fonts, returns array]
  2383. imagepstext(|resource image, string text, int font, int size, int foreground, int background, int x, int y, [int space], [int tightness], [float angle], [int antialias_steps])
  2384. [imagerectangle | Draw a rectangle, returns int]
  2385. imagerectangle(|resource image, int x1, int y1, int x2, int y2, int col)
  2386. [imagerotate | Rotate an image with a given angle, returns resource]
  2387. imagerotate(|resource src_im, float angle, int bgd_color)
  2388. [imagesavealpha | Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images., returns bool]
  2389. imagesavealpha(|resource image, bool saveflag)
  2390. [imagesetbrush | Set the brush image for line drawing, returns int]
  2391. imagesetbrush(|resource image, resource brush)
  2392. [imagesetpixel | Set a single pixel, returns int]
  2393. imagesetpixel(|resource image, int x, int y, int color)
  2394. [imagesetstyle | Set the style for line drawing, returns bool]
  2395. imagesetstyle(|resource image, array style)
  2396. [imagesetthickness | Set the thickness for line drawing, returns bool]
  2397. imagesetthickness(|resource image, int thickness)
  2398. [imagesettile | Set the tile image for filling, returns int]
  2399. imagesettile(|resource image, resource tile)
  2400. [imagestring | Draw a string horizontally, returns int]
  2401. imagestring(|resource image, int font, int x, int y, string s, int col)
  2402. [imagestringup | Draw a string vertically, returns int]
  2403. imagestringup(|resource image, int font, int x, int y, string s, int col)
  2404. [imagesx | Get image width, returns int]
  2405. imagesx(|resource image)
  2406. [imagesy | Get image height, returns int]
  2407. imagesy(|resource image)
  2408. [imagetruecolortopalette | Convert a true color image to a palette image, returns void]
  2409. imagetruecolortopalette(|resource image, bool dither, int ncolors)
  2410. [imagettfbbox | Give the bounding box of a text using TrueType fonts, returns array]
  2411. imagettfbbox(|int size, int angle, string fontfile, string text)
  2412. [imagettftext | Write text to the image using TrueType fonts, returns array]
  2413. imagettftext(|resource image, int size, int angle, int x, int y, int color, string fontfile, string text)
  2414. [imagetypes | Return the image types supported by this PHP build, returns int]
  2415. imagetypes()|
  2416. [imagewbmp | Output image to browser or file, returns int]
  2417. imagewbmp(|resource image, [string filename], [int foreground])
  2418. [iptcembed | Embed binary IPTC data into a JPEG image, returns array]
  2419. iptcembed(|string iptcdata, string jpeg_file_name, [int spool])
  2420. [iptcparse | Parse a binary IPTC http://www.iptc.org/ block into single tags., returns array]
  2421. iptcparse(|string iptcblock)
  2422. [jpeg2wbmp | Convert JPEG image file to WBMP image file, returns int]
  2423. jpeg2wbmp(|string jpegname, string wbmpname, int d_height, int d_width, int threshold)
  2424. [png2wbmp | Convert PNG image file to WBMP image file, returns int]
  2425. png2wbmp(|string pngname, string wbmpname, int d_height, int d_width, int threshold)
  2426. [read_exif_data | Alias of exif_read_data]
  2427. ; -----------------------------------------------------------------------------
  2428. ; IMAP - IMAP, POP3 and NNTP functions
  2429. ; -----------------------------------------------------------------------------
  2430. [imap_8bit | Convert an 8bit string to a quoted-printable string, returns string]
  2431. imap_8bit(|string string)
  2432. [imap_alerts | This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset, returns array]
  2433. imap_alerts()|
  2434. [imap_append | Append a string message to a specified mailbox, returns bool]
  2435. imap_append(|resource imap_stream, string mbox, string message, [string options])
  2436. [imap_base64 | Decode BASE64 encoded text, returns string]
  2437. imap_base64(|string text)
  2438. [imap_binary | Convert an 8bit string to a base64 string, returns string]
  2439. imap_binary(|string string)
  2440. [imap_body | Read the message body, returns string]
  2441. imap_body(|resource imap_stream, int msg_number, [int options])
  2442. [imap_bodystruct | Read the structure of a specified body section of a specific message, returns object]
  2443. imap_bodystruct(|resource stream_id, int msg_no, int section)
  2444. [imap_check | Check current mailbox, returns object]
  2445. imap_check(|resource imap_stream)
  2446. [imap_clearflag_full | Clears flags on messages, returns bool]
  2447. imap_clearflag_full(|resource stream, string sequence, string flag, string options)
  2448. [imap_close | Close an IMAP stream, returns bool]
  2449. imap_close(|resource imap_stream, [int flag])
  2450. [imap_createmailbox | Create a new mailbox, returns bool]
  2451. imap_createmailbox(|resource imap_stream, string mbox)
  2452. [imap_delete | Mark a message for deletion from current mailbox, returns bool]
  2453. imap_delete(|int imap_stream, int msg_number, [int options])
  2454. [imap_deletemailbox | Delete a mailbox, returns bool]
  2455. imap_deletemailbox(|resource imap_stream, string mbox)
  2456. [imap_errors | This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset., returns array]
  2457. imap_errors()|
  2458. [imap_expunge | Delete all messages marked for deletion, returns bool]
  2459. imap_expunge(|resource imap_stream)
  2460. [imap_fetch_overview | Read an overview of the information in the headers of the given message, returns array]
  2461. imap_fetch_overview(|resource imap_stream, string sequence, [int options])
  2462. [imap_fetchbody | Fetch a particular section of the body of the message, returns string]
  2463. imap_fetchbody(|resource imap_stream, int msg_number, string part_number, [flags options])
  2464. [imap_fetchheader | Returns header for a message, returns string]
  2465. imap_fetchheader(|resource imap_stream, int msgno, int options)
  2466. [imap_fetchstructure | Read the structure of a particular message, returns object]
  2467. imap_fetchstructure(|resource imap_stream, int msg_number, [int options])
  2468. [imap_get_quota | Retrieve the quota level settings, and usage statics per mailbox, returns array]
  2469. imap_get_quota(|resource imap_stream, string quota_root)
  2470. [imap_get_quotaroot | Retrieve the quota settings per user, returns array]
  2471. imap_get_quotaroot(|resource imap_stream, string quota_root)
  2472. [imap_getacl | Gets the ACL for a given mailbox, returns array]
  2473. imap_getacl(|resource stream_id, string mailbox)
  2474. [imap_getmailboxes | Read the list of mailboxes, returning detailed information on each one, returns array]
  2475. imap_getmailboxes(|resource imap_stream, string ref, string pattern)
  2476. [imap_getsubscribed | List all the subscribed mailboxes, returns array]
  2477. imap_getsubscribed(|resource imap_stream, string ref, string pattern)
  2478. [imap_header | Alias of imap_headerinfo]
  2479. [imap_headerinfo | Read the header of the message, returns object]
  2480. imap_headerinfo(|resource imap_stream, int msg_number, [int fromlength], [int subjectlength], [string defaulthost])
  2481. [imap_headers | Returns headers for all messages in a mailbox, returns array]
  2482. imap_headers(|resource imap_stream)
  2483. [imap_last_error | This function returns the last IMAP error (if any) that occurred during this page request, returns string]
  2484. imap_last_error()|
  2485. [imap_list | Read the list of mailboxes, returns array]
  2486. imap_list(|resource imap_stream, string ref, string pattern)
  2487. [imap_listmailbox | Alias of imap_list]
  2488. [imap_listscan | Read the list of mailboxes, takes a string to search for in the text of the mailbox, returns array]
  2489. imap_listscan(|resource imap_stream, string ref, string pattern, string content)
  2490. [imap_listsubscribed | Alias of imap_lsub]
  2491. [imap_lsub | List all the subscribed mailboxes, returns array]
  2492. imap_lsub(|resource imap_stream, string ref, string pattern)
  2493. [imap_mail_compose | Create a MIME message based on given envelope and body sections, returns string]
  2494. imap_mail_compose(|array envelope, array body)
  2495. [imap_mail_copy | Copy specified messages to a mailbox, returns bool]
  2496. imap_mail_copy(|resource imap_stream, string msglist, string mbox, [int options])
  2497. [imap_mail_move | Move specified messages to a mailbox, returns bool]
  2498. imap_mail_move(|resource imap_stream, string msglist, string mbox, [int options])
  2499. [imap_mail | Send an email message, returns bool]
  2500. imap_mail(|string to, string subject, string message, [string additional_headers], [string cc], [string bcc], [string rpath])
  2501. [imap_mailboxmsginfo | Get information about the current mailbox, returns object]
  2502. imap_mailboxmsginfo(|resource imap_stream)
  2503. [imap_mime_header_decode | Decode MIME header elements, returns array]
  2504. imap_mime_header_decode(|string text)
  2505. [imap_msgno | This function returns the message sequence number for the given UID, returns int]
  2506. imap_msgno(|resource imap_stream, int uid)
  2507. [imap_num_msg | Gives the number of messages in the current mailbox, returns int]
  2508. imap_num_msg(|resource imap_stream)
  2509. [imap_num_recent | Gives the number of recent messages in current mailbox, returns int]
  2510. imap_num_recent(|resource imap_stream)
  2511. [imap_open | Open an IMAP stream to a mailbox, returns resource]
  2512. imap_open(|string mailbox, string username, string password, [int options])
  2513. [imap_ping | Check if the IMAP stream is still active, returns bool]
  2514. imap_ping(|resource imap_stream)
  2515. [imap_qprint | Convert a quoted-printable string to an 8 bit string, returns string]
  2516. imap_qprint(|string string)
  2517. [imap_renamemailbox | Rename an old mailbox to new mailbox, returns bool]
  2518. imap_renamemailbox(|resource imap_stream, string old_mbox, string new_mbox)
  2519. [imap_reopen | Reopen IMAP stream to new mailbox, returns bool]
  2520. imap_reopen(|resource imap_stream, string mailbox, [string options])
  2521. [imap_rfc822_parse_adrlist | Parses an address string, returns array]
  2522. imap_rfc822_parse_adrlist(|string address, string default_host)
  2523. [imap_rfc822_parse_headers | Parse mail headers from a string, returns object]
  2524. imap_rfc822_parse_headers(|string headers, [string defaulthost])
  2525. [imap_rfc822_write_address | Returns a properly formatted email address given the mailbox, host, and personal info., returns string]
  2526. imap_rfc822_write_address(|string mailbox, string host, string personal)
  2527. [imap_scanmailbox | Alias of imap_listscan]
  2528. [imap_search | This function returns an array of messages matching the given search criteria, returns array]
  2529. imap_search(|resource imap_stream, string criteria, int options)
  2530. [imap_set_quota | Sets a quota for a given mailbox, returns bool]
  2531. imap_set_quota(|resource imap_stream, string quota_root, int quota_limit)
  2532. [imap_setacl | Sets the ACL for a giving mailbox, returns bool]
  2533. imap_setacl(|resource stream_id, string mailbox, string id, string rights)
  2534. [imap_setflag_full | Sets flags on messages, returns bool]
  2535. imap_setflag_full(|resource stream, string sequence, string flag, string options)
  2536. [imap_sort | Sort an array of message headers, returns array]
  2537. imap_sort(|resource stream, int criteria, int reverse, [int options], [string search_criteria])
  2538. [imap_status | This function returns status information on a mailbox other than the current one, returns object]
  2539. imap_status(|resource imap_stream, string mailbox, int options)
  2540. [imap_subscribe | Subscribe to a mailbox, returns bool]
  2541. imap_subscribe(|resource imap_stream, string mbox)
  2542. [imap_thread | Return threaded by REFERENCES tree, returns array]
  2543. imap_thread(|resource stream_id, [int options])
  2544. [imap_timeout | Set or fetch imap timeout, returns mixed]
  2545. imap_timeout(|int timeout_type, [int timeout])
  2546. [imap_uid | This function returns the UID for the given message sequence number, returns int]
  2547. imap_uid(|resource imap_stream, int msgno)
  2548. [imap_undelete | Unmark the message which is marked deleted, returns bool]
  2549. imap_undelete(|resource imap_stream, int msg_number)
  2550. [imap_unsubscribe | Unsubscribe from a mailbox, returns bool]
  2551. imap_unsubscribe(|string imap_stream, string mbox)
  2552. [imap_utf7_decode | Decodes a modified UTF-7 encoded string., returns string]
  2553. imap_utf7_decode(|string text)
  2554. [imap_utf7_encode | Converts ISO-8859-1 string to modified UTF-7 text., returns string]
  2555. imap_utf7_encode(|string data)
  2556. [imap_utf8 | Converts MIME-encoded text to UTF-8, returns string]
  2557. imap_utf8(|string mime_encoded_text)
  2558. ; -----------------------------------------------------------------------------
  2559. ; Informix - Informix functions
  2560. ; -----------------------------------------------------------------------------
  2561. [ifx_affected_rows | Get number of rows affected by a query, returns int]
  2562. ifx_affected_rows(|int result_id)
  2563. [ifx_blobinfile_mode | Set the default blob mode for all select queries, returns void]
  2564. ifx_blobinfile_mode(|int mode)
  2565. [ifx_byteasvarchar | Set the default byte mode, returns void]
  2566. ifx_byteasvarchar(|int mode)
  2567. [ifx_close | Close Informix connection, returns int]
  2568. ifx_close(|[int link_identifier])
  2569. [ifx_connect | Open Informix server connection, returns int]
  2570. ifx_connect(|[string database], [string userid], [string password])
  2571. [ifx_copy_blob | Duplicates the given blob object, returns int]
  2572. ifx_copy_blob(|int bid)
  2573. [ifx_create_blob | Creates an blob object, returns int]
  2574. ifx_create_blob(|int type, int mode, string param)
  2575. [ifx_create_char | Creates an char object, returns int]
  2576. ifx_create_char(|string param)
  2577. [ifx_do | Execute a previously prepared SQL-statement, returns int]
  2578. ifx_do(|int result_id)
  2579. [ifx_error | Returns error code of last Informix call, returns string]
  2580. ifx_error()|
  2581. [ifx_errormsg | Returns error message of last Informix call, returns string]
  2582. ifx_errormsg(|[int errorcode])
  2583. [ifx_fetch_row | Get row as enumerated array, returns array]
  2584. ifx_fetch_row(|int result_id, [mixed position])
  2585. [ifx_fieldproperties | List of SQL fieldproperties, returns array]
  2586. ifx_fieldproperties(|int result_id)
  2587. [ifx_fieldtypes | List of Informix SQL fields, returns array]
  2588. ifx_fieldtypes(|int result_id)
  2589. [ifx_free_blob | Deletes the blob object, returns int]
  2590. ifx_free_blob(|int bid)
  2591. [ifx_free_char | Deletes the char object, returns int]
  2592. ifx_free_char(|int bid)
  2593. [ifx_free_result | Releases resources for the query, returns int]
  2594. ifx_free_result(|int result_id)
  2595. [ifx_get_blob | Return the content of a blob object, returns int]
  2596. ifx_get_blob(|int bid)
  2597. [ifx_get_char | Return the content of the char object, returns int]
  2598. ifx_get_char(|int bid)
  2599. [ifx_getsqlca | Get the contents of sqlca.sqlerrd[0..5] after a query, returns array]
  2600. ifx_getsqlca(|int result_id)
  2601. [ifx_htmltbl_result | Formats all rows of a query into a HTML table, returns int]
  2602. ifx_htmltbl_result(|int result_id, [string html_table_options])
  2603. [ifx_nullformat | Sets the default return value on a fetch row, returns void]
  2604. ifx_nullformat(|int mode)
  2605. [ifx_num_fields | Returns the number of columns in the query, returns int]
  2606. ifx_num_fields(|int result_id)
  2607. [ifx_num_rows | Count the rows already fetched from a query, returns int]
  2608. ifx_num_rows(|int result_id)
  2609. [ifx_pconnect | Open persistent Informix connection, returns int]
  2610. ifx_pconnect(|[string database], [string userid], [string password])
  2611. [ifx_prepare | Prepare an SQL-statement for execution, returns int]
  2612. ifx_prepare(|string query, int conn_id, [int cursor_def], mixed blobidarray)
  2613. [ifx_query | Send Informix query, returns int]
  2614. ifx_query(|string query, int link_identifier, [int cursor_type], [mixed blobidarray])
  2615. [ifx_textasvarchar | Set the default text mode, returns void]
  2616. ifx_textasvarchar(|int mode)
  2617. [ifx_update_blob | Updates the content of the blob object, returns bool]
  2618. ifx_update_blob(|int bid, string content)
  2619. [ifx_update_char | Updates the content of the char object, returns int]
  2620. ifx_update_char(|int bid, string content)
  2621. [ifxus_close_slob | Deletes the slob object, returns int]
  2622. ifxus_close_slob(|int bid)
  2623. [ifxus_create_slob | Creates an slob object and opens it, returns int]
  2624. ifxus_create_slob(|int mode)
  2625. [ifxus_free_slob | Deletes the slob object, returns int]
  2626. ifxus_free_slob(|int bid)
  2627. [ifxus_open_slob | Opens an slob object, returns int]
  2628. ifxus_open_slob(|long bid, int mode)
  2629. [ifxus_read_slob | Reads nbytes of the slob object, returns int]
  2630. ifxus_read_slob(|long bid, long nbytes)
  2631. [ifxus_seek_slob | Sets the current file or seek position, returns int]
  2632. ifxus_seek_slob(|long bid, int mode, long offset)
  2633. [ifxus_tell_slob | Returns the current file or seek position, returns int]
  2634. ifxus_tell_slob(|long bid)
  2635. [ifxus_write_slob | Writes a string into the slob object, returns int]
  2636. ifxus_write_slob(|long bid, string content)
  2637. ; -----------------------------------------------------------------------------
  2638. ; InterBase - InterBase functions
  2639. ; -----------------------------------------------------------------------------
  2640. [ibase_add_user | Add a user to a security database (only for IB6 or later), returns bool]
  2641. ibase_add_user(|string server, string dba_user_name, string dba_user_password, string user_name, string password, [string first_name], [string middle_name], [string last_name])
  2642. [ibase_affected_rows | Return the number of rows that were affected by the previous query, returns int]
  2643. ibase_affected_rows(|resource link_identifier)
  2644. [ibase_blob_add | Add data into a newly created blob, returns bool]
  2645. ibase_blob_add(|resource blob_handle, string data)
  2646. [ibase_blob_cancel | Cancel creating blob, returns bool]
  2647. ibase_blob_cancel(|resource blob_handle)
  2648. [ibase_blob_close | Close blob, returns mixed]
  2649. ibase_blob_close(|resource blob_handle)
  2650. [ibase_blob_create | Create a new blob for adding data, returns resource]
  2651. ibase_blob_create(|[resource link_identifier])
  2652. [ibase_blob_echo | Output blob contents to browser, returns bool]
  2653. ibase_blob_echo(|string blob_id)
  2654. [ibase_blob_get | Get len bytes data from open blob, returns string]
  2655. ibase_blob_get(|resource blob_handle, int len)
  2656. [ibase_blob_import | Create blob, copy file in it, and close it, returns string]
  2657. ibase_blob_import(|[resource link_identifier], resource file_handle)
  2658. [ibase_blob_info | Return blob length and other useful info, returns array]
  2659. ibase_blob_info(|string blob_id)
  2660. [ibase_blob_open | Open blob for retrieving data parts, returns resource]
  2661. ibase_blob_open(|string blob_id)
  2662. [ibase_close | Close a connection to an InterBase database, returns bool]
  2663. ibase_close(|[resource connection_id])
  2664. [ibase_commit_ret | Commit a transaction without closing it, returns bool]
  2665. ibase_commit_ret(|[resource link_identifier])
  2666. [ibase_commit | Commit a transaction, returns bool]
  2667. ibase_commit(|[resource link_identifier])
  2668. [ibase_connect | Open a connection to an InterBase database, returns resource]
  2669. ibase_connect(|string database, [string username], [string password], [string charset], [int buffers], [int dialect], [string role])
  2670. [ibase_delete_user | Delete a user from a security database (only for IB6 or later), returns bool]
  2671. ibase_delete_user(|string server, string dba_user_name, string dba_user_password, string user_name)
  2672. [ibase_drop_db | Drops a database, returns bool]
  2673. ibase_drop_db(|resource connection)
  2674. [ibase_errcode | Return an error code, returns int]
  2675. ibase_errcode()|
  2676. [ibase_errmsg | Return error messages, returns string]
  2677. ibase_errmsg()|
  2678. [ibase_execute | Execute a previously prepared query, returns resource]
  2679. ibase_execute(|resource query, [int bind_args])
  2680. [ibase_fetch_assoc | Fetch a result row from a query as an associative array, returns array]
  2681. ibase_fetch_assoc(|resource result, [int fetch_flag])
  2682. [ibase_fetch_object | Get an object from a InterBase database, returns object]
  2683. ibase_fetch_object(|resource result_id, [int fetch_flag])
  2684. [ibase_fetch_row | Fetch a row from an InterBase database, returns array]
  2685. ibase_fetch_row(|resource result_identifier, [int fetch_flag])
  2686. [ibase_field_info | Get information about a field, returns array]
  2687. ibase_field_info(|resource result, int field_number)
  2688. [ibase_free_event_handler | Cancels a registered event handler, returns bool]
  2689. ibase_free_event_handler(|resource event)
  2690. [ibase_free_query | Free memory allocated by a prepared query, returns bool]
  2691. ibase_free_query(|resource query)
  2692. [ibase_free_result | Free a result set, returns bool]
  2693. ibase_free_result(|resource result_identifier)
  2694. [ibase_gen_id | Increments the named generator and returns its new value, returns int]
  2695. ibase_gen_id(|[resource link_identifier], [string generator], [int increment])
  2696. [ibase_modify_user | Modify a user to a security database (only for IB6 or later), returns bool]
  2697. ibase_modify_user(|string server, string dba_user_name, string dba_user_password, string user_name, string password, [string first_name], [string middle_name], [string last_name])
  2698. [ibase_name_result | Assigns a name to a result set, returns bool]
  2699. ibase_name_result(|resource result, string name)
  2700. [ibase_num_fields | Get the number of fields in a result set, returns int]
  2701. ibase_num_fields(|resource result_id)
  2702. [ibase_num_params | Return the number of parameters in a prepared query, returns int]
  2703. ibase_num_params(|resource query)
  2704. [ibase_param_info | Return information about a parameter in a prepared query, returns array]
  2705. ibase_param_info(|resource query, int param_number)
  2706. [ibase_pconnect | Open a persistent connection to an InterBase database, returns resource]
  2707. ibase_pconnect(|string database, [string username], [string password], [string charset], [int buffers], [int dialect], [string role])
  2708. [ibase_prepare | Prepare a query for later binding of parameter placeholders and execution, returns resource]
  2709. ibase_prepare(|[resource link_identifier], string query)
  2710. [ibase_query | Execute a query on an InterBase database, returns resource]
  2711. ibase_query(|[resource link_identifier], string query, [int bind_args])
  2712. [ibase_rollback_ret | Roll back a transaction without closing it, returns bool]
  2713. ibase_rollback_ret(|[resource link_identifier])
  2714. [ibase_rollback | Roll back a transaction, returns bool]
  2715. ibase_rollback(|[resource link_identifier])
  2716. [ibase_set_event_handler | Register a callback function to be called when events are posted, returns resource]
  2717. ibase_set_event_handler(|[resource connection], callback event_handler, string event_name1, [string event_name2], [string ...])
  2718. [ibase_timefmt | Sets the format of timestamp, date and time type columns returned from queries, returns int]
  2719. ibase_timefmt(|string format, [int columntype])
  2720. [ibase_trans | Begin a transaction, returns resource]
  2721. ibase_trans(|[int trans_args], [resource link_identifier])
  2722. [ibase_wait_event | Wait for an event to be posted by the database, returns string]
  2723. ibase_wait_event(|[resource connection], string event_name1, [string event_name2], [string ...])
  2724. ; -----------------------------------------------------------------------------
  2725. ; Ingres II - Ingres II functions
  2726. ; -----------------------------------------------------------------------------
  2727. [ingres_autocommit | Switch autocommit on or off, returns bool]
  2728. ingres_autocommit(|[resource link])
  2729. [ingres_close | Close an Ingres II database connection, returns bool]
  2730. ingres_close(|[resource link])
  2731. [ingres_commit | Commit a transaction, returns bool]
  2732. ingres_commit(|[resource link])
  2733. [ingres_connect | Open a connection to an Ingres II database, returns resource]
  2734. ingres_connect(|[string database], [string username], [string password])
  2735. [ingres_fetch_array | Fetch a row of result into an array, returns array]
  2736. ingres_fetch_array(|[int result_type], [resource link])
  2737. [ingres_fetch_object | Fetch a row of result into an object., returns object]
  2738. ingres_fetch_object(|[int result_type], [resource link])
  2739. [ingres_fetch_row | Fetch a row of result into an enumerated array, returns array]
  2740. ingres_fetch_row(|[resource link])
  2741. [ingres_field_length | Get the length of a field, returns int]
  2742. ingres_field_length(|int index, [resource link])
  2743. [ingres_field_name | Get the name of a field in a query result., returns string]
  2744. ingres_field_name(|int index, [resource link])
  2745. [ingres_field_nullable | Test if a field is nullable, returns bool]
  2746. ingres_field_nullable(|int index, [resource link])
  2747. [ingres_field_precision | Get the precision of a field, returns int]
  2748. ingres_field_precision(|int index, [resource link])
  2749. [ingres_field_scale | Get the scale of a field, returns int]
  2750. ingres_field_scale(|int index, [resource link])
  2751. [ingres_field_type | Get the type of a field in a query result, returns string]
  2752. ingres_field_type(|int index, [resource link])
  2753. [ingres_num_fields | Get the number of fields returned by the last query, returns int]
  2754. ingres_num_fields(|[resource link])
  2755. [ingres_num_rows | Get the number of rows affected or returned by the last query, returns int]
  2756. ingres_num_rows(|[resource link])
  2757. [ingres_pconnect | Open a persistent connection to an Ingres II database, returns resource]
  2758. ingres_pconnect(|[string database], [string username], [string password])
  2759. [ingres_query | Send a SQL query to Ingres II, returns bool]
  2760. ingres_query(|string query, [resource link])
  2761. [ingres_rollback | Roll back a transaction, returns bool]
  2762. ingres_rollback(|[resource link])
  2763. ; -----------------------------------------------------------------------------
  2764. ; IRC Gateway - IRC Gateway Functions
  2765. ; -----------------------------------------------------------------------------
  2766. [ircg_channel_mode | Set channel mode flags for user, returns bool]
  2767. ircg_channel_mode(|resource connection, string channel, string mode_spec, string nick)
  2768. [ircg_disconnect | Close connection to server, returns bool]
  2769. ircg_disconnect(|resource connection, string reason)
  2770. [ircg_fetch_error_msg | Returns the error from previous IRCG operation, returns array]
  2771. ircg_fetch_error_msg(|resource connection)
  2772. [ircg_get_username | Get username for connection, returns string]
  2773. ircg_get_username(|resource connection)
  2774. [ircg_html_encode | Encodes HTML preserving output, returns bool]
  2775. ircg_html_encode(|string html_string)
  2776. [ircg_ignore_add | Add a user to your ignore list on a server, returns bool]
  2777. ircg_ignore_add(|resource connection, string nick)
  2778. [ircg_ignore_del | Remove a user from your ignore list on a server, returns bool]
  2779. ircg_ignore_del(|resource connection, string nick)
  2780. [ircg_is_conn_alive | Check connection status, returns bool]
  2781. ircg_is_conn_alive(|resource connection)
  2782. [ircg_join | Join a channel on a connected server, returns bool]
  2783. ircg_join(|resource connection, string channel, [string key])
  2784. [ircg_kick | Kick a user out of a channel on server, returns bool]
  2785. ircg_kick(|resource connection, string channel, string nick, string reason)
  2786. [ircg_lookup_format_messages | Check for the existence of a format message set, returns bool]
  2787. ircg_lookup_format_messages(|string name)
  2788. [ircg_msg | Send message to channel or user on server, returns bool]
  2789. ircg_msg(|resource connection, string recipient, string message, [boolean suppress])
  2790. [ircg_nick | Change nickname on server, returns bool]
  2791. ircg_nick(|resource connection, string nick)
  2792. [ircg_nickname_escape | Encode special characters in nickname to be IRC-compliant, returns string]
  2793. ircg_nickname_escape(|string nick)
  2794. [ircg_nickname_unescape | Decodes encoded nickname, returns string]
  2795. ircg_nickname_unescape(|string nick)
  2796. [ircg_notice | Send a notice to a user on server, returns bool]
  2797. ircg_notice(|resource connection, string , string message)
  2798. [ircg_part | Leave a channel on server, returns bool]
  2799. ircg_part(|resource connection, string channel)
  2800. [ircg_pconnect | Connect to an IRC server, returns resource]
  2801. ircg_pconnect(|string username, [string server_ip], [int server_port], [string msg_format], [array ctcp_messages], [array user_settings])
  2802. [ircg_register_format_messages | Register a format message set, returns bool]
  2803. ircg_register_format_messages(|string name, array messages)
  2804. [ircg_set_current | Set current connection for output, returns bool]
  2805. ircg_set_current(|resource connection)
  2806. [ircg_set_file | Set logfile for connection, returns bool]
  2807. ircg_set_file(|resource connection, string path)
  2808. [ircg_set_on_die | Set action to be executed when connection dies, returns bool]
  2809. ircg_set_on_die(|resource connection, string host, int port, string data)
  2810. [ircg_topic | Set topic for channel on server, returns bool]
  2811. ircg_topic(|resource connection, string channel, string new_topic)
  2812. [ircg_whois | Query server for user information, returns bool]
  2813. ircg_whois(|resource connection, string nick)
  2814. ; -----------------------------------------------------------------------------
  2815. ; Java - PHP / Java Integration
  2816. ; -----------------------------------------------------------------------------
  2817. [java_last_exception_clear | Clear last Java exception, returns void]
  2818. java_last_exception_clear()|
  2819. [java_last_exception_get | Get last Java exception, returns exception]
  2820. java_last_exception_get()|
  2821. ; -----------------------------------------------------------------------------
  2822. ; LDAP - LDAP functions
  2823. ; -----------------------------------------------------------------------------
  2824. [ldap_8859_to_t61 | Translate 8859 characters to t61 characters, returns string]
  2825. ldap_8859_to_t61(|string value)
  2826. [ldap_add | Add entries to LDAP directory, returns bool]
  2827. ldap_add(|resource link_identifier, string dn, array entry)
  2828. [ldap_bind | Bind to LDAP directory, returns bool]
  2829. ldap_bind(|resource link_identifier, [string bind_rdn], [string bind_password])
  2830. [ldap_close | Close link to LDAP server, returns bool]
  2831. ldap_close(|resource link_identifier)
  2832. [ldap_compare | Compare value of attribute found in entry specified with DN, returns bool]
  2833. ldap_compare(|resource link_identifier, string dn, string attribute, string value)
  2834. [ldap_connect | Connect to an LDAP server, returns resource]
  2835. ldap_connect(|[string hostname], [int port])
  2836. [ldap_count_entries | Count the number of entries in a search, returns int]
  2837. ldap_count_entries(|resource link_identifier, resource result_identifier)
  2838. [ldap_delete | Delete an entry from a directory, returns bool]
  2839. ldap_delete(|resource link_identifier, string dn)
  2840. [ldap_dn2ufn | Convert DN to User Friendly Naming format, returns string]
  2841. ldap_dn2ufn(|string dn)
  2842. [ldap_err2str | Convert LDAP error number into string error message, returns string]
  2843. ldap_err2str(|int errno)
  2844. [ldap_errno | Return the LDAP error number of the last LDAP command, returns int]
  2845. ldap_errno(|resource link_identifier)
  2846. [ldap_error | Return the LDAP error message of the last LDAP command, returns string]
  2847. ldap_error(|resource link_identifier)
  2848. [ldap_explode_dn | Splits DN into its component parts, returns array]
  2849. ldap_explode_dn(|string dn, int with_attrib)
  2850. [ldap_first_attribute | Return first attribute, returns string]
  2851. ldap_first_attribute(|resource link_identifier, resource result_entry_identifier, int ber_identifier)
  2852. [ldap_first_entry | Return first result id, returns resource]
  2853. ldap_first_entry(|resource link_identifier, resource result_identifier)
  2854. [ldap_first_reference | Return first reference, returns resource]
  2855. ldap_first_reference(|resource link, resource result)
  2856. [ldap_free_result | Free result memory, returns bool]
  2857. ldap_free_result(|resource result_identifier)
  2858. [ldap_get_attributes | Get attributes from a search result entry, returns array]
  2859. ldap_get_attributes(|resource link_identifier, resource result_entry_identifier)
  2860. [ldap_get_dn | Get the DN of a result entry, returns string]
  2861. ldap_get_dn(|resource link_identifier, resource result_entry_identifier)
  2862. [ldap_get_entries | Get all result entries, returns array]
  2863. ldap_get_entries(|resource link_identifier, resource result_identifier)
  2864. [ldap_get_option | Get the current value for given option, returns bool]
  2865. ldap_get_option(|resource link_identifier, int option, mixed retval)
  2866. [ldap_get_values_len | Get all binary values from a result entry, returns array]
  2867. ldap_get_values_len(|resource link_identifier, resource result_entry_identifier, string attribute)
  2868. [ldap_get_values | Get all values from a result entry, returns array]
  2869. ldap_get_values(|resource link_identifier, resource result_entry_identifier, string attribute)
  2870. [ldap_list | Single-level search, returns resource]
  2871. ldap_list(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2872. [ldap_mod_add | Add attribute values to current attributes, returns bool]
  2873. ldap_mod_add(|resource link_identifier, string dn, array entry)
  2874. [ldap_mod_del | Delete attribute values from current attributes, returns bool]
  2875. ldap_mod_del(|resource link_identifier, string dn, array entry)
  2876. [ldap_mod_replace | Replace attribute values with new ones, returns bool]
  2877. ldap_mod_replace(|resource link_identifier, string dn, array entry)
  2878. [ldap_modify | Modify an LDAP entry, returns bool]
  2879. ldap_modify(|resource link_identifier, string dn, array entry)
  2880. [ldap_next_attribute | Get the next attribute in result, returns string]
  2881. ldap_next_attribute(|resource link_identifier, resource result_entry_identifier, resource ber_identifier)
  2882. [ldap_next_entry | Get next result entry, returns resource]
  2883. ldap_next_entry(|resource link_identifier, resource result_entry_identifier)
  2884. [ldap_next_reference | Get next reference, returns resource]
  2885. ldap_next_reference(|resource link, resource entry)
  2886. [ldap_parse_reference | Extract information from reference entry, returns bool]
  2887. ldap_parse_reference(|resource link, resource entry, array referrals)
  2888. [ldap_parse_result | Extract information from result, returns bool]
  2889. ldap_parse_result(|resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)
  2890. [ldap_read | Read an entry, returns resource]
  2891. ldap_read(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2892. [ldap_rename | Modify the name of an entry, returns bool]
  2893. ldap_rename(|resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn)
  2894. [ldap_search | Search LDAP tree, returns resource]
  2895. ldap_search(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2896. [ldap_set_option | Set the value of the given option, returns bool]
  2897. ldap_set_option(|resource link_identifier, int option, mixed newval)
  2898. [ldap_set_rebind_proc | Set a callback function to do re-binds on referral chasing., returns bool]
  2899. ldap_set_rebind_proc(|resource link, string callback)
  2900. [ldap_sort | Sort LDAP result entries, returns bool]
  2901. ldap_sort(|resource link, resource result, string sortfilter)
  2902. [ldap_start_tls | Start TLS, returns bool]
  2903. ldap_start_tls(|resource link)
  2904. [ldap_t61_to_8859 | Translate t61 characters to 8859 characters, returns string]
  2905. ldap_t61_to_8859(|string value)
  2906. [ldap_unbind | Unbind from LDAP directory, returns bool]
  2907. ldap_unbind(|resource link_identifier)
  2908. ; -----------------------------------------------------------------------------
  2909. ; Mail - Mail functions
  2910. ; -----------------------------------------------------------------------------
  2911. [ezmlm_hash | Calculate the hash value needed by EZMLM, returns int]
  2912. ezmlm_hash(|string addr)
  2913. [mail | send mail, returns bool]
  2914. mail(|string to, string subject, string message, [string additional_headers], [string additional_parameters])
  2915. ; -----------------------------------------------------------------------------
  2916. ; mailparse - mailparse functions
  2917. ; -----------------------------------------------------------------------------
  2918. [mailparse_determine_best_xfer_encoding | Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able, returns int]
  2919. mailparse_determine_best_xfer_encoding(|resource fp)
  2920. [mailparse_msg_create | Returns a handle that can be used to parse a message, returns int]
  2921. mailparse_msg_create()|
  2922. [mailparse_msg_extract_part_file | Extracts/decodes a message section, decoding the transfer encoding, returns string]
  2923. mailparse_msg_extract_part_file(|resource rfc2045, string filename, [string callbackfunc])
  2924. [mailparse_msg_extract_part | Extracts/decodes a message section. If callbackfunc is not specified, the contents will be sent to "stdout", returns void]
  2925. mailparse_msg_extract_part(|resource rfc2045, string msgbody, [string callbackfunc])
  2926. [mailparse_msg_free | Frees a handle allocated by mailparse_msg_create, returns void]
  2927. mailparse_msg_free(|resource rfc2045buf)
  2928. [mailparse_msg_get_part_data | Returns an associative array of info about the message, returns array]
  2929. mailparse_msg_get_part_data(|resource rfc2045)
  2930. [mailparse_msg_get_part | Returns a handle on a given section in a mimemessage, returns int]
  2931. mailparse_msg_get_part(|resource rfc2045, string mimesection)
  2932. [mailparse_msg_get_structure | Returns an array of mime section names in the supplied message, returns array]
  2933. mailparse_msg_get_structure(|resource rfc2045)
  2934. [mailparse_msg_parse_file | Parse file and return a resource representing the structure, returns resource]
  2935. mailparse_msg_parse_file(|string filename)
  2936. [mailparse_msg_parse | Incrementally parse data into buffer, returns void]
  2937. mailparse_msg_parse(|resource rfc2045buf, string data)
  2938. [mailparse_rfc822_parse_addresses | Parse addresses and returns a hash containing that data, returns array]
  2939. mailparse_rfc822_parse_addresses(|string addresses)
  2940. [mailparse_stream_encode | Streams data from source file pointer, apply encoding and write to destfp, returns bool]
  2941. mailparse_stream_encode(|resource sourcefp, resource destfp, string encoding)
  2942. [mailparse_uudecode_all | Scans the data from fp and extract each embedded uuencoded file. Returns an array listing filename information, returns array]
  2943. mailparse_uudecode_all(|resource fp)
  2944. ; -----------------------------------------------------------------------------
  2945. ; Math - Mathematical Functions
  2946. ; -----------------------------------------------------------------------------
  2947. [abs | Absolute value, returns mixed]
  2948. abs(|mixed number)
  2949. [acos | Arc cosine, returns float]
  2950. acos(|float arg)
  2951. [acosh | Inverse hyperbolic cosine, returns float]
  2952. acosh(|float arg)
  2953. [asin | Arc sine, returns float]
  2954. asin(|float arg)
  2955. [asinh | Inverse hyperbolic sine, returns float]
  2956. asinh(|float arg)
  2957. [atan2 | arc tangent of two variables, returns float]
  2958. atan2(|float y, float x)
  2959. [atan | Arc tangent, returns float]
  2960. atan(|float arg)
  2961. [atanh | Inverse hyperbolic tangent, returns float]
  2962. atanh(|float arg)
  2963. [base_convert | Convert a number between arbitrary bases, returns string]
  2964. base_convert(|string number, int frombase, int tobase)
  2965. [bindec | Binary to decimal, returns int]
  2966. bindec(|string binary_string)
  2967. [ceil | Round fractions up, returns float]
  2968. ceil(|float value)
  2969. [cos | Cosine, returns float]
  2970. cos(|float arg)
  2971. [cosh | Hyperbolic cosine, returns float]
  2972. cosh(|float arg)
  2973. [decbin | Decimal to binary, returns string]
  2974. decbin(|int number)
  2975. [dechex | Decimal to hexadecimal, returns string]
  2976. dechex(|int number)
  2977. [decoct | Decimal to octal, returns string]
  2978. decoct(|int number)
  2979. [deg2rad | Converts the number in degrees to the radian equivalent, returns float]
  2980. deg2rad(|float number)
  2981. [exp | Calculates the exponent of e (the Neperian or Natural logarithm base), returns float]
  2982. exp(|float arg)
  2983. [expm1 | Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero, returns float]
  2984. expm1(|float number)
  2985. [floor | Round fractions down, returns float]
  2986. floor(|float value)
  2987. [fmod | Returns the floating point remainder (modulo) of the division of the arguments, returns float]
  2988. fmod(|float x, float y)
  2989. [getrandmax | Show largest possible random value, returns int]
  2990. getrandmax()|
  2991. [hexdec | Hexadecimal to decimal, returns int]
  2992. hexdec(|string hex_string)
  2993. [hypot | Returns sqrt( num1*num1 + num2*num2), returns float]
  2994. hypot(|float num1, float num2)
  2995. [is_finite | Finds whether a value is a legal finite number, returns bool]
  2996. is_finite(|float val)
  2997. [is_infinite | Finds whether a value is infinite, returns bool]
  2998. is_infinite(|float val)
  2999. [is_nan | Finds whether a value is not a number, returns bool]
  3000. is_nan(|float val)
  3001. [lcg_value | Combined linear congruential generator, returns float]
  3002. lcg_value()|
  3003. [log10 | Base-10 logarithm, returns float]
  3004. log10(|float arg)
  3005. [log1p | Returns log(1 + number), computed in a way that accurate even when the val ue of number is close to zero, returns float]
  3006. log1p(|float number)
  3007. [log | Natural logarithm, returns float]
  3008. log(|float arg, [float base])
  3009. [max | Find highest value, returns mixed]
  3010. max(|number arg1, number arg2, [number ...])
  3011. [min | Find lowest value, returns mixed]
  3012. min(|number arg1, number arg2, [number ...])
  3013. [mt_getrandmax | Show largest possible random value, returns int]
  3014. mt_getrandmax()|
  3015. [mt_rand | Generate a better random value, returns int]
  3016. mt_rand(|[int min], int max)
  3017. [mt_srand | Seed the better random number generator, returns void]
  3018. mt_srand(|int seed)
  3019. [octdec | Octal to decimal, returns int]
  3020. octdec(|string octal_string)
  3021. [pi | Get value of pi, returns float]
  3022. pi()|
  3023. [pow | Exponential expression, returns number]
  3024. pow(|number base, number exp)
  3025. [rad2deg | Converts the radian number to the equivalent number in degrees, returns float]
  3026. rad2deg(|float number)
  3027. [rand | Generate a random value, returns int]
  3028. rand(|[int min], int max)
  3029. [round | Rounds a float, returns float]
  3030. round(|float val, [int precision])
  3031. [sin | Sine, returns float]
  3032. sin(|float arg)
  3033. [sinh | Hyperbolic sine, returns float]
  3034. sinh(|float arg)
  3035. [sqrt | Square root, returns float]
  3036. sqrt(|float arg)
  3037. [srand | Seed the random number generator, returns void]
  3038. srand(|int seed)
  3039. [tan | Tangent, returns float]
  3040. tan(|float arg)
  3041. [tanh | Hyperbolic tangent, returns float]
  3042. tanh(|float arg)
  3043. ; -----------------------------------------------------------------------------
  3044. ; Multi-Byte String - Multi-Byte String Functions
  3045. ; -----------------------------------------------------------------------------
  3046. [mb_convert_case | Perform case folding on a string, returns string]
  3047. mb_convert_case(|string str, int mode, [string encoding])
  3048. [mb_convert_encoding | Convert character encoding, returns string]
  3049. mb_convert_encoding(|string str, string to-encoding, [mixed from-encoding])
  3050. [mb_convert_kana | Convert "kana" one from another ("zen-kaku" ,"han-kaku" and more), returns string]
  3051. mb_convert_kana(|string str, string option, [mixed encoding])
  3052. [mb_convert_variables | Convert character code in variable(s), returns string]
  3053. mb_convert_variables(|string to-encoding, mixed from-encoding, mixed vars)
  3054. [mb_decode_mimeheader | Decode string in MIME header field, returns string]
  3055. mb_decode_mimeheader(|string str)
  3056. [mb_decode_numericentity | Decode HTML numeric string reference to character, returns string]
  3057. mb_decode_numericentity(|string str, array convmap, [string encoding])
  3058. [mb_detect_encoding | Detect character encoding, returns string]
  3059. mb_detect_encoding(|string str, [mixed encoding-list])
  3060. [mb_detect_order | Set/Get character encoding detection order, returns array]
  3061. mb_detect_order(|[mixed encoding-list])
  3062. [mb_encode_mimeheader | Encode string for MIME header, returns string]
  3063. mb_encode_mimeheader(|string str, [string charset], [string transfer-encoding], [string linefeed])
  3064. [mb_encode_numericentity | Encode character to HTML numeric string reference, returns string]
  3065. mb_encode_numericentity(|string str, array convmap, [string encoding])
  3066. [mb_ereg_match | Regular expression match for multibyte string, returns bool]
  3067. mb_ereg_match(|string pattern, string string, [string option])
  3068. [mb_ereg_replace | Replace regular expression with multibyte support, returns string]
  3069. mb_ereg_replace(|string pattern, string replacement, string string, [array option])
  3070. [mb_ereg_search_getpos | Returns start point for next regular expression match, returns array]
  3071. mb_ereg_search_getpos()|
  3072. [mb_ereg_search_getregs | Retrieve the result from the last multibyte regular expression match, returns array]
  3073. mb_ereg_search_getregs()|
  3074. [mb_ereg_search_init | Setup string and regular expression for multibyte regular expression match, returns array]
  3075. mb_ereg_search_init(|string string, [string pattern], [string option])
  3076. [mb_ereg_search_pos | Return position and length of matched part of multibyte regular expression for predefined multibyte string, returns array]
  3077. mb_ereg_search_pos(|[string pattern], [string option])
  3078. [mb_ereg_search_regs | Returns the matched part of multibyte regular expression, returns array]
  3079. mb_ereg_search_regs(|[string pattern], [string option])
  3080. [mb_ereg_search_setpos | Set start point of next regular expression match, returns array]
  3081. mb_ereg_search_setpos()|
  3082. [mb_ereg_search | Multibyte regular expression match for predefined multibyte string, returns bool]
  3083. mb_ereg_search(|[string pattern], [string option])
  3084. [mb_ereg | Regular expression match with multibyte support, returns int]
  3085. mb_ereg(|string pattern, string string, [array regs])
  3086. [mb_eregi_replace | Replace regular expression with multibyte support ignoring case, returns string]
  3087. mb_eregi_replace(|string pattern, string replace, string string)
  3088. [mb_eregi | Regular expression match ignoring case with multibyte support, returns int]
  3089. mb_eregi(|string pattern, string string, [array regs])
  3090. [mb_get_info | Get internal settings of mbstring, returns string]
  3091. mb_get_info(|[string type])
  3092. [mb_http_input | Detect HTTP input character encoding, returns string]
  3093. mb_http_input(|[string type])
  3094. [mb_http_output | Set/Get HTTP output character encoding, returns string]
  3095. mb_http_output(|[string encoding])
  3096. [mb_internal_encoding | Set/Get internal character encoding, returns string]
  3097. mb_internal_encoding(|[string encoding])
  3098. [mb_language | Set/Get current language, returns string]
  3099. mb_language(|[string language])
  3100. [mb_output_handler | Callback function converts character encoding in output buffer, returns string]
  3101. mb_output_handler(|string contents, int status)
  3102. [mb_parse_str | Parse GET/POST/COOKIE data and set global variable, returns bool]
  3103. mb_parse_str(|string encoded_string, [array result])
  3104. [mb_preferred_mime_name | Get MIME charset string, returns string]
  3105. mb_preferred_mime_name(|string encoding)
  3106. [mb_regex_encoding | Returns current encoding for multibyte regex as string, returns string]
  3107. mb_regex_encoding(|[string encoding])
  3108. [mb_regex_set_options | Set/Get the default options for mbregex functions, returns string]
  3109. mb_regex_set_options(|[string options])
  3110. [mb_send_mail | Send encoded mail., returns bool]
  3111. mb_send_mail(|string to, string subject, string message, [string additional_headers], [string additional_parameter])
  3112. [mb_split | Split multibyte string using regular expression, returns array]
  3113. mb_split(|string pattern, string string, [int limit])
  3114. [mb_strcut | Get part of string, returns string]
  3115. mb_strcut(|string str, int start, [int length], [string encoding])
  3116. [mb_strimwidth | Get truncated string with specified width, returns string]
  3117. mb_strimwidth(|string str, int start, int width, string trimmarker, [string encoding])
  3118. [mb_strlen | Get string length, returns string]
  3119. mb_strlen(|string str, [string encoding])
  3120. [mb_strpos | Find position of first occurrence of string in a string, returns int]
  3121. mb_strpos(|string haystack, string needle, [int offset], [string encoding])
  3122. [mb_strrpos | Find position of last occurrence of a string in a string, returns int]
  3123. mb_strrpos(|string haystack, string needle, [string encoding])
  3124. [mb_strtolower | Make a string lowercase, returns string]
  3125. mb_strtolower(|string str, [string encoding])
  3126. [mb_strtoupper | Make a string uppercase, returns string]
  3127. mb_strtoupper(|string str, [string encoding])
  3128. [mb_strwidth | Return width of string, returns int]
  3129. mb_strwidth(|string str, [string encoding])
  3130. [mb_substitute_character | Set/Get substitution character, returns mixed]
  3131. mb_substitute_character(|[mixed substrchar])
  3132. [mb_substr_count | Count the number of substring occurrences, returns int]
  3133. mb_substr_count(|string haystack, string needle, [string encoding])
  3134. [mb_substr | Get part of string, returns string]
  3135. mb_substr(|string str, int start, [int length], [string encoding])
  3136. ; -----------------------------------------------------------------------------
  3137. ; MCAL - MCAL functions
  3138. ; -----------------------------------------------------------------------------
  3139. [mcal_append_event | Store a new event into an MCAL calendar, returns int]
  3140. mcal_append_event(|int mcal_stream)
  3141. [mcal_close | Close an MCAL stream, returns int]
  3142. mcal_close(|int mcal_stream, int flags)
  3143. [mcal_create_calendar | Create a new MCAL calendar, returns bool]
  3144. mcal_create_calendar(|int stream, string calendar)
  3145. [mcal_date_compare | Compares two dates, returns int]
  3146. mcal_date_compare(|int a_year, int a_month, int a_day, int b_year, int b_month, int b_day)
  3147. [mcal_date_valid | Returns TRUE if the given year, month, day is a valid date, returns int]
  3148. mcal_date_valid(|int year, int month, int day)
  3149. [mcal_day_of_week | Returns the day of the week of the given date, returns int]
  3150. mcal_day_of_week(|int year, int month, int day)
  3151. [mcal_day_of_year | Returns the day of the year of the given date, returns int]
  3152. mcal_day_of_year(|int year, int month, int day)
  3153. [mcal_days_in_month | Returns the number of days in a month, returns int]
  3154. mcal_days_in_month(|int month, int leap_year)
  3155. [mcal_delete_calendar | Delete an MCAL calendar, returns string]
  3156. mcal_delete_calendar(|int stream, string calendar)
  3157. [mcal_delete_event | Delete an event from an MCAL calendar, returns int]
  3158. mcal_delete_event(|int mcal_stream, [int event_id])
  3159. [mcal_event_add_attribute | Adds an attribute and a value to the streams global event structure, returns void]
  3160. mcal_event_add_attribute(|int stream, string attribute, string value)
  3161. [mcal_event_init | Initializes a streams global event structure, returns int]
  3162. mcal_event_init(|int stream)
  3163. [mcal_event_set_alarm | Sets the alarm of the streams global event structure, returns int]
  3164. mcal_event_set_alarm(|int stream, int alarm)
  3165. [mcal_event_set_category | Sets the category of the streams global event structure, returns int]
  3166. mcal_event_set_category(|int stream, string category)
  3167. [mcal_event_set_class | Sets the class of the streams global event structure, returns int]
  3168. mcal_event_set_class(|int stream, int class)
  3169. [mcal_event_set_description | Sets the description of the streams global event structure, returns int]
  3170. mcal_event_set_description(|int stream, string description)
  3171. [mcal_event_set_end | Sets the end date and time of the streams global event structure, returns int]
  3172. mcal_event_set_end(|int stream, int year, int month, [int day], [int hour], [int min], [int sec])
  3173. [mcal_event_set_recur_daily | Sets the recurrence of the streams global event structure, returns int]
  3174. mcal_event_set_recur_daily(|int stream, int year, int month, int day, int interval)
  3175. [mcal_event_set_recur_monthly_mday | Sets the recurrence of the streams global event structure, returns int]
  3176. mcal_event_set_recur_monthly_mday(|int stream, int year, int month, int day, int interval)
  3177. [mcal_event_set_recur_monthly_wday | Sets the recurrence of the streams global event structure, returns int]
  3178. mcal_event_set_recur_monthly_wday(|int stream, int year, int month, int day, int interval)
  3179. [mcal_event_set_recur_none | Sets the recurrence of the streams global event structure, returns int]
  3180. mcal_event_set_recur_none(|int stream)
  3181. [mcal_event_set_recur_weekly | Sets the recurrence of the streams global event structure, returns int]
  3182. mcal_event_set_recur_weekly(|int stream, int year, int month, int day, int interval, int weekdays)
  3183. [mcal_event_set_recur_yearly | Sets the recurrence of the streams global event structure, returns int]
  3184. mcal_event_set_recur_yearly(|int stream, int year, int month, int day, int interval)
  3185. [mcal_event_set_start | Sets the start date and time of the streams global event structure, returns int]
  3186. mcal_event_set_start(|int stream, int year, int month, [int day], [int hour], [int min], [int sec])
  3187. [mcal_event_set_title | Sets the title of the streams global event structure, returns int]
  3188. mcal_event_set_title(|int stream, string title)
  3189. [mcal_expunge | Deletes all events marked for being expunged., returns int]
  3190. mcal_expunge(|int stream)
  3191. [mcal_fetch_current_stream_event | Returns an object containing the current streams event structure, returns object]
  3192. mcal_fetch_current_stream_event(|int stream)
  3193. [mcal_fetch_event | Fetches an event from the calendar stream, returns object]
  3194. mcal_fetch_event(|int mcal_stream, int event_id, [int options])
  3195. [mcal_is_leap_year | Returns if the given year is a leap year or not, returns int]
  3196. mcal_is_leap_year(|int year)
  3197. [mcal_list_alarms | Return a list of events that has an alarm triggered at the given datetime, returns array]
  3198. mcal_list_alarms(|int mcal_stream, [int begin_year], [int begin_month], [int begin_day], [int end_year], [int end_month], [int end_day])
  3199. [mcal_list_events | Return a list of IDs for a date or a range of dates, returns array]
  3200. mcal_list_events(|int mcal_stream, object begin_date, [object end_date])
  3201. [mcal_next_recurrence | Returns the next recurrence of the event, returns int]
  3202. mcal_next_recurrence(|int stream, int weekstart, array next)
  3203. [mcal_open | Opens up an MCAL connection, returns int]
  3204. mcal_open(|string calendar, string username, string password, [int options])
  3205. [mcal_popen | Opens up a persistent MCAL connection, returns int]
  3206. mcal_popen(|string calendar, string username, string password, [int options])
  3207. [mcal_rename_calendar | Rename an MCAL calendar, returns string]
  3208. mcal_rename_calendar(|int stream, string old_name, string new_name)
  3209. [mcal_reopen | Reopens an MCAL connection, returns int]
  3210. mcal_reopen(|string calendar, [int options])
  3211. [mcal_snooze | Turn off an alarm for an event, returns bool]
  3212. mcal_snooze(|int stream_id, int event_id)
  3213. [mcal_store_event | Modify an existing event in an MCAL calendar, returns int]
  3214. mcal_store_event(|int mcal_stream)
  3215. [mcal_time_valid | Returns TRUE if the given year, month, day is a valid time, returns int]
  3216. mcal_time_valid(|int hour, int minutes, int seconds)
  3217. [mcal_week_of_year | Returns the week number of the given date, returns int]
  3218. mcal_week_of_year(|int day, int month, int year)
  3219. ; -----------------------------------------------------------------------------
  3220. ; mcrypt - Mcrypt Encryption Functions
  3221. ; -----------------------------------------------------------------------------
  3222. [mcrypt_cbc | Encrypt/decrypt data in CBC mode, returns string]
  3223. mcrypt_cbc(|int cipher, string key, string data, int mode, [string iv])
  3224. [mcrypt_cfb | Encrypt/decrypt data in CFB mode, returns string]
  3225. mcrypt_cfb(|int cipher, string key, string data, int mode, string iv)
  3226. [mcrypt_create_iv | Create an initialization vector (IV) from a random source, returns string]
  3227. mcrypt_create_iv(|int size, int source)
  3228. [mcrypt_decrypt | Decrypts crypttext with given parameters, returns string]
  3229. mcrypt_decrypt(|string cipher, string key, string data, string mode, [string iv])
  3230. [mcrypt_ecb | Encrypt/decrypt data in ECB mode, returns string]
  3231. mcrypt_ecb(|int cipher, string key, string data, int mode)
  3232. [mcrypt_enc_get_algorithms_name | Returns the name of the opened algorithm, returns string]
  3233. mcrypt_enc_get_algorithms_name(|resource td)
  3234. [mcrypt_enc_get_block_size | Returns the blocksize of the opened algorithm, returns int]
  3235. mcrypt_enc_get_block_size(|resource td)
  3236. [mcrypt_enc_get_iv_size | Returns the size of the IV of the opened algorithm, returns int]
  3237. mcrypt_enc_get_iv_size(|resource td)
  3238. [mcrypt_enc_get_key_size | Returns the maximum supported keysize of the opened mode, returns int]
  3239. mcrypt_enc_get_key_size(|resource td)
  3240. [mcrypt_enc_get_modes_name | Returns the name of the opened mode, returns string]
  3241. mcrypt_enc_get_modes_name(|resource td)
  3242. [mcrypt_enc_get_supported_key_sizes | Returns an array with the supported keysizes of the opened algorithm, returns array]
  3243. mcrypt_enc_get_supported_key_sizes(|resource td)
  3244. [mcrypt_enc_is_block_algorithm_mode | Checks whether the encryption of the opened mode works on blocks, returns bool]
  3245. mcrypt_enc_is_block_algorithm_mode(|resource td)
  3246. [mcrypt_enc_is_block_algorithm | Checks whether the algorithm of the opened mode is a block algorithm, returns bool]
  3247. mcrypt_enc_is_block_algorithm(|resource td)
  3248. [mcrypt_enc_is_block_mode | Checks whether the opened mode outputs blocks, returns bool]
  3249. mcrypt_enc_is_block_mode(|resource td)
  3250. [mcrypt_enc_self_test | This function runs a self test on the opened module, returns bool]
  3251. mcrypt_enc_self_test(|resource td)
  3252. [mcrypt_encrypt | Encrypts plaintext with given parameters, returns string]
  3253. mcrypt_encrypt(|string cipher, string key, string data, string mode, [string iv])
  3254. [mcrypt_generic_deinit | This function deinitializes an encryption module, returns bool]
  3255. mcrypt_generic_deinit(|resource td)
  3256. [mcrypt_generic_end | This function terminates encryption, returns bool]
  3257. mcrypt_generic_end(|resource td)
  3258. [mcrypt_generic_init | This function initializes all buffers needed for encryption, returns int]
  3259. mcrypt_generic_init(|resource td, string key, string iv)
  3260. [mcrypt_generic | This function encrypts data, returns string]
  3261. mcrypt_generic(|resource td, string data)
  3262. [mcrypt_get_block_size | Get the block size of the specified cipher, returns int]
  3263. mcrypt_get_block_size(|int cipher)
  3264. [mcrypt_get_cipher_name | Get the name of the specified cipher, returns string]
  3265. mcrypt_get_cipher_name(|int cipher)
  3266. [mcrypt_get_iv_size | Returns the size of the IV belonging to a specific cipher/mode combination, returns int]
  3267. mcrypt_get_iv_size(|resource td)
  3268. [mcrypt_get_key_size | Get the key size of the specified cipher, returns int]
  3269. mcrypt_get_key_size(|int cipher)
  3270. [mcrypt_list_algorithms | Get an array of all supported ciphers, returns array]
  3271. mcrypt_list_algorithms(|[string lib_dir])
  3272. [mcrypt_list_modes | Get an array of all supported modes, returns array]
  3273. mcrypt_list_modes(|[string lib_dir])
  3274. [mcrypt_module_close | Close the mcrypt module, returns bool]
  3275. mcrypt_module_close(|resource td)
  3276. [mcrypt_module_get_algo_block_size | Returns the blocksize of the specified algorithm, returns int]
  3277. mcrypt_module_get_algo_block_size(|string algorithm, [string lib_dir])
  3278. [mcrypt_module_get_algo_key_size | Returns the maximum supported keysize of the opened mode, returns int]
  3279. mcrypt_module_get_algo_key_size(|string algorithm, [string lib_dir])
  3280. [mcrypt_module_get_supported_key_sizes | Returns an array with the supported keysizes of the opened algorithm, returns array]
  3281. mcrypt_module_get_supported_key_sizes(|string algorithm, [string lib_dir])
  3282. [mcrypt_module_is_block_algorithm_mode | This function returns if the the specified module is a block algorithm or not, returns bool]
  3283. mcrypt_module_is_block_algorithm_mode(|string mode, [string lib_dir])
  3284. [mcrypt_module_is_block_algorithm | This function checks whether the specified algorithm is a block algorithm, returns bool]
  3285. mcrypt_module_is_block_algorithm(|string algorithm, [string lib_dir])
  3286. [mcrypt_module_is_block_mode | This function returns if the the specified mode outputs blocks or not, returns bool]
  3287. mcrypt_module_is_block_mode(|string mode, [string lib_dir])
  3288. [mcrypt_module_open | Opens the module of the algorithm and the mode to be used, returns resource]
  3289. mcrypt_module_open(|string algorithm, string algorithm_directory, string mode, string mode_directory)
  3290. [mcrypt_module_self_test | This function runs a self test on the specified module, returns bool]
  3291. mcrypt_module_self_test(|string algorithm, [string lib_dir])
  3292. [mcrypt_ofb | Encrypt/decrypt data in OFB mode, returns string]
  3293. mcrypt_ofb(|int cipher, string key, string data, int mode, string iv)
  3294. [mdecrypt_generic | Decrypt data, returns string]
  3295. mdecrypt_generic(|resource td, string data)
  3296. ; -----------------------------------------------------------------------------
  3297. ; MCVE - MCVE Payment Functions
  3298. ; -----------------------------------------------------------------------------
  3299. [mcve_adduser | Add an MCVE user using usersetup structure, returns int]
  3300. mcve_adduser(|resource conn, string admin_password, int usersetup)
  3301. [mcve_adduserarg | Add a value to user configuration structure, returns int]
  3302. mcve_adduserarg(|resource usersetup, int argtype, string argval)
  3303. [mcve_bt | Get unsettled batch totals, returns int]
  3304. mcve_bt(|resource conn, string username, string password)
  3305. [mcve_checkstatus | Check to see if a transaction has completed, returns int]
  3306. mcve_checkstatus(|resource conn, int identifier)
  3307. [mcve_chkpwd | Verify Password, returns int]
  3308. mcve_chkpwd(|resource conn, string username, string password)
  3309. [mcve_chngpwd | Change the system administrator's password, returns int]
  3310. mcve_chngpwd(|resource conn, string admin_password, string new_password)
  3311. [mcve_completeauthorizations | Number of complete authorizations in queue, returning an array of their identifiers, returns int]
  3312. mcve_completeauthorizations(|resource conn, int &array)
  3313. [mcve_connect | Establish the connection to MCVE, returns int]
  3314. mcve_connect(|resource conn)
  3315. [mcve_connectionerror | Get a textual representation of why a connection failed, returns string]
  3316. mcve_connectionerror(|resource conn)
  3317. [mcve_deleteresponse | Delete specified transaction from MCVE_CONN structure, returns bool]
  3318. mcve_deleteresponse(|resource conn, int identifier)
  3319. [mcve_deletetrans | Delete specified transaction from MCVE_CONN structure, returns bool]
  3320. mcve_deletetrans(|resource conn, int identifier)
  3321. [mcve_deleteusersetup | Deallocate data associated with usersetup structure, returns void]
  3322. mcve_deleteusersetup(|resource usersetup)
  3323. [mcve_deluser | Delete an MCVE user account, returns int]
  3324. mcve_deluser(|resource conn, string admin_password, string username)
  3325. [mcve_destroyconn | Destroy the connection and MCVE_CONN structure, returns void]
  3326. mcve_destroyconn(|resource conn)
  3327. [mcve_destroyengine | Free memory associated with IP/SSL connectivity, returns void]
  3328. mcve_destroyengine()|
  3329. [mcve_disableuser | Disable an active MCVE user account, returns int]
  3330. mcve_disableuser(|resource conn, string admin_password, string username)
  3331. [mcve_edituser | Edit MCVE user using usersetup structure, returns int]
  3332. mcve_edituser(|resource conn, string admin_password, int usersetup)
  3333. [mcve_enableuser | Enable an inactive MCVE user account, returns int]
  3334. mcve_enableuser(|resource conn, string admin_password, string username)
  3335. [mcve_force | Send a FORCE to MCVE. (typically, a phone-authorization), returns int]
  3336. mcve_force(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum)
  3337. [mcve_getcell | Get a specific cell from a comma delimited response by column name, returns string]
  3338. mcve_getcell(|resource conn, int identifier, string column, int row)
  3339. [mcve_getcellbynum | Get a specific cell from a comma delimited response by column number, returns string]
  3340. mcve_getcellbynum(|resource conn, int identifier, int column, int row)
  3341. [mcve_getcommadelimited | Get the RAW comma delimited data returned from MCVE, returns string]
  3342. mcve_getcommadelimited(|resource conn, int identifier)
  3343. [mcve_getheader | Get the name of the column in a comma-delimited response, returns string]
  3344. mcve_getheader(|resource conn, int identifier, int column_num)
  3345. [mcve_getuserarg | Grab a value from usersetup structure, returns string]
  3346. mcve_getuserarg(|resource usersetup, int argtype)
  3347. [mcve_getuserparam | Get a user response parameter, returns string]
  3348. mcve_getuserparam(|resource conn, long identifier, int key)
  3349. [mcve_gft | Audit MCVE for Failed transactions, returns int]
  3350. mcve_gft(|resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3351. [mcve_gl | Audit MCVE for settled transactions, returns int]
  3352. mcve_gl(|int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3353. [mcve_gut | Audit MCVE for Unsettled Transactions, returns int]
  3354. mcve_gut(|resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3355. [mcve_initconn | Create and initialize an MCVE_CONN structure, returns resource]
  3356. mcve_initconn()|
  3357. [mcve_initengine | Ready the client for IP/SSL Communication, returns int]
  3358. mcve_initengine(|string location)
  3359. [mcve_initusersetup | Initialize structure to store user data, returns resource]
  3360. mcve_initusersetup()|
  3361. [mcve_iscommadelimited | Checks to see if response is comma delimited, returns int]
  3362. mcve_iscommadelimited(|resource conn, int identifier)
  3363. [mcve_liststats | List statistics for all users on MCVE system, returns int]
  3364. mcve_liststats(|resource conn, string admin_password)
  3365. [mcve_listusers | List all users on MCVE system, returns int]
  3366. mcve_listusers(|resource conn, string admin_password)
  3367. [mcve_maxconntimeout | The maximum amount of time the API will attempt a connection to MCVE, returns bool]
  3368. mcve_maxconntimeout(|resource conn, int secs)
  3369. [mcve_monitor | Perform communication with MCVE (send/receive data) Non-blocking, returns int]
  3370. mcve_monitor(|resource conn)
  3371. [mcve_numcolumns | Number of columns returned in a comma delimited response, returns int]
  3372. mcve_numcolumns(|resource conn, int identifier)
  3373. [mcve_numrows | Number of rows returned in a comma delimited response, returns int]
  3374. mcve_numrows(|resource conn, int identifier)
  3375. [mcve_override | Send an OVERRIDE to MCVE, returns int]
  3376. mcve_override(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3377. [mcve_parsecommadelimited | Parse the comma delimited response so mcve_getcell, etc will work, returns int]
  3378. mcve_parsecommadelimited(|resource conn, int identifier)
  3379. [mcve_ping | Send a ping request to MCVE, returns int]
  3380. mcve_ping(|resource conn)
  3381. [mcve_preauth | Send a PREAUTHORIZATION to MCVE, returns int]
  3382. mcve_preauth(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3383. [mcve_preauthcompletion | Complete a PREAUTHORIZATION... Ready it for settlement, returns int]
  3384. mcve_preauthcompletion(|resource conn, string username, string password, float finalamount, int sid, int ptrannum)
  3385. [mcve_qc | Audit MCVE for a list of transactions in the outgoing queue, returns int]
  3386. mcve_qc(|resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum)
  3387. [mcve_responseparam | Get a custom response parameter, returns string]
  3388. mcve_responseparam(|resource conn, long identifier, string key)
  3389. [mcve_return | Issue a RETURN or CREDIT to MCVE, returns int]
  3390. mcve_return(|int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum)
  3391. [mcve_returncode | Grab the exact return code from the transaction, returns int]
  3392. mcve_returncode(|resource conn, int identifier)
  3393. [mcve_returnstatus | Check to see if the transaction was successful, returns int]
  3394. mcve_returnstatus(|resource conn, int identifier)
  3395. [mcve_sale | Send a SALE to MCVE, returns int]
  3396. mcve_sale(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3397. [mcve_setblocking | Set blocking/non-blocking mode for connection, returns int]
  3398. mcve_setblocking(|resource conn, int tf)
  3399. [mcve_setdropfile | Set the connection method to Drop-File, returns int]
  3400. mcve_setdropfile(|resource conn, string directory)
  3401. [mcve_setip | Set the connection method to IP, returns int]
  3402. mcve_setip(|resource conn, string host, int port)
  3403. [mcve_setssl_files | Set certificate key files and certificates if server requires client certificate verification, returns int]
  3404. mcve_setssl_files(|string sslkeyfile, string sslcertfile)
  3405. [mcve_setssl | Set the connection method to SSL, returns int]
  3406. mcve_setssl(|resource conn, string host, int port)
  3407. [mcve_settimeout | Set maximum transaction time (per trans), returns int]
  3408. mcve_settimeout(|resource conn, int seconds)
  3409. [mcve_settle | Issue a settlement command to do a batch deposit, returns int]
  3410. mcve_settle(|resource conn, string username, string password, string batch)
  3411. [mcve_text_avs | Get a textual representation of the return_avs, returns string]
  3412. mcve_text_avs(|string code)
  3413. [mcve_text_code | Get a textual representation of the return_code, returns string]
  3414. mcve_text_code(|string code)
  3415. [mcve_text_cv | Get a textual representation of the return_cv, returns string]
  3416. mcve_text_cv(|int code)
  3417. [mcve_transactionauth | Get the authorization number returned for the transaction (alpha-numeric), returns string]
  3418. mcve_transactionauth(|resource conn, int identifier)
  3419. [mcve_transactionavs | Get the Address Verification return status, returns int]
  3420. mcve_transactionavs(|resource conn, int identifier)
  3421. [mcve_transactionbatch | Get the batch number associated with the transaction, returns int]
  3422. mcve_transactionbatch(|resource conn, int identifier)
  3423. [mcve_transactioncv | Get the CVC2/CVV2/CID return status, returns int]
  3424. mcve_transactioncv(|resource conn, int identifier)
  3425. [mcve_transactionid | Get the unique system id for the transaction, returns int]
  3426. mcve_transactionid(|resource conn, int identifier)
  3427. [mcve_transactionitem | Get the ITEM number in the associated batch for this transaction, returns int]
  3428. mcve_transactionitem(|resource conn, int identifier)
  3429. [mcve_transactionssent | Check to see if outgoing buffer is clear, returns int]
  3430. mcve_transactionssent(|resource conn)
  3431. [mcve_transactiontext | Get verbiage (text) return from MCVE or processing institution, returns string]
  3432. mcve_transactiontext(|resource conn, int identifier)
  3433. [mcve_transinqueue | Number of transactions in client-queue, returns int]
  3434. mcve_transinqueue(|resource conn)
  3435. [mcve_transnew | Start a new transaction, returns int]
  3436. mcve_transnew(|resource conn)
  3437. [mcve_transparam | Add a parameter to a transaction, returns int]
  3438. mcve_transparam(|resource conn, long identifier, int key)
  3439. [mcve_transsend | Finalize and send the transaction, returns int]
  3440. mcve_transsend(|resource conn, long identifier)
  3441. [mcve_ub | Get a list of all Unsettled batches, returns int]
  3442. mcve_ub(|resource conn, string username, string password)
  3443. [mcve_uwait | Wait x microsecs, returns int]
  3444. mcve_uwait(|long microsecs)
  3445. [mcve_verifyconnection | Set whether or not to PING upon connect to verify connection, returns bool]
  3446. mcve_verifyconnection(|resource conn, int tf)
  3447. [mcve_verifysslcert | Set whether or not to verify the server ssl certificate, returns bool]
  3448. mcve_verifysslcert(|resource conn, int tf)
  3449. [mcve_void | VOID a transaction in the settlement queue, returns int]
  3450. mcve_void(|resource conn, string username, string password, int sid, int ptrannum)
  3451. ; -----------------------------------------------------------------------------
  3452. ; mhash - Mhash Functions
  3453. ; -----------------------------------------------------------------------------
  3454. [mhash_count | Get the highest available hash id, returns int]
  3455. mhash_count()|
  3456. [mhash_get_block_size | Get the block size of the specified hash, returns int]
  3457. mhash_get_block_size(|int hash)
  3458. [mhash_get_hash_name | Get the name of the specified hash, returns string]
  3459. mhash_get_hash_name(|int hash)
  3460. [mhash_keygen_s2k | Generates a key, returns string]
  3461. mhash_keygen_s2k(|int hash, string password, string salt, int bytes)
  3462. [mhash | Compute hash, returns string]
  3463. mhash(|int hash, string data, [string key])
  3464. ; -----------------------------------------------------------------------------
  3465. ; Mimetype - Mimetype Functions
  3466. ; -----------------------------------------------------------------------------
  3467. [mime_content_type | Detect MIME Content-type for a file, returns string]
  3468. mime_content_type(|string filename)
  3469. ; -----------------------------------------------------------------------------
  3470. ; MS SQL Server - Microsoft SQL Server functions
  3471. ; -----------------------------------------------------------------------------
  3472. [mssql_bind | Adds a parameter to a stored procedure or a remote stored procedure, returns bool]
  3473. mssql_bind(|resource stmt, string param_name, mixed var, int type, [int is_output], [int is_null], [int maxlen])
  3474. [mssql_close | Close MS SQL Server connection, returns bool]
  3475. mssql_close(|[resource link_identifier])
  3476. [mssql_connect | Open MS SQL server connection, returns int]
  3477. mssql_connect(|[string servername], [string username], [string password])
  3478. [mssql_data_seek | Moves internal row pointer, returns bool]
  3479. mssql_data_seek(|resource result_identifier, int row_number)
  3480. [mssql_execute | Executes a stored procedure on a MS SQL server database, returns mixed]
  3481. mssql_execute(|resource stmt, [bool skip_results])
  3482. [mssql_fetch_array | Fetch a result row as an associative array, a numeric array, or both, returns array]
  3483. mssql_fetch_array(|resource result, [int result_type])
  3484. [mssql_fetch_assoc | Returns an associative array of the current row in the result set specified by result_id, returns array]
  3485. mssql_fetch_assoc(|resource result_id)
  3486. [mssql_fetch_batch | Returns the next batch of records, returns int]
  3487. mssql_fetch_batch(|resource result_index)
  3488. [mssql_fetch_field | Get field information, returns object]
  3489. mssql_fetch_field(|resource result, [int field_offset])
  3490. [mssql_fetch_object | Fetch row as object, returns object]
  3491. mssql_fetch_object(|resource result)
  3492. [mssql_fetch_row | Get row as enumerated array, returns array]
  3493. mssql_fetch_row(|resource result)
  3494. [mssql_field_length | Get the length of a field, returns int]
  3495. mssql_field_length(|resource result, [int offset])
  3496. [mssql_field_name | Get the name of a field, returns string]
  3497. mssql_field_name(|resource result, [int offset])
  3498. [mssql_field_seek | Seeks to the specified field offset, returns bool]
  3499. mssql_field_seek(|resource result, int field_offset)
  3500. [mssql_field_type | Gets the type of a field, returns string]
  3501. mssql_field_type(|resource result, [int offset])
  3502. [mssql_free_result | Free result memory, returns bool]
  3503. mssql_free_result(|resource result)
  3504. [mssql_free_statement | Free statement memory, returns bool]
  3505. mssql_free_statement(|resource statement)
  3506. [mssql_get_last_message | Returns the last message from the server, returns string]
  3507. mssql_get_last_message()|
  3508. [mssql_guid_string | Converts a 16 byte binary GUID to a string, returns string]
  3509. mssql_guid_string(|string binary, [int short_format])
  3510. [mssql_init | Initializes a stored procedure or a remote stored procedure, returns int]
  3511. mssql_init(|string sp_name, [resource conn_id])
  3512. [mssql_min_error_severity | Sets the lower error severity, returns void]
  3513. mssql_min_error_severity(|int severity)
  3514. [mssql_min_message_severity | Sets the lower message severity, returns void]
  3515. mssql_min_message_severity(|int severity)
  3516. [mssql_next_result | Move the internal result pointer to the next result, returns bool]
  3517. mssql_next_result(|resource result_id)
  3518. [mssql_num_fields | Gets the number of fields in result, returns int]
  3519. mssql_num_fields(|resource result)
  3520. [mssql_num_rows | Gets the number of rows in result, returns int]
  3521. mssql_num_rows(|resource result)
  3522. [mssql_pconnect | Open persistent MS SQL connection, returns int]
  3523. mssql_pconnect(|[string servername], [string username], [string password])
  3524. [mssql_query | Send MS SQL query, returns resource]
  3525. mssql_query(|string query, [resource link_identifier], [int batch_size])
  3526. [mssql_result | Get result data, returns string]
  3527. mssql_result(|resource result, int row, mixed field)
  3528. [mssql_rows_affected | Returns the number of records affected by the query, returns int]
  3529. mssql_rows_affected(|resource conn_id)
  3530. [mssql_select_db | Select MS SQL database, returns bool]
  3531. mssql_select_db(|string database_name, [resource link_identifier])
  3532. ; -----------------------------------------------------------------------------
  3533. ; Ming (flash) - Ming functions for Flash
  3534. ; -----------------------------------------------------------------------------
  3535. [ming_setcubicthreshold | Set cubic threshold (?), returns void]
  3536. ming_setcubicthreshold(|int threshold)
  3537. [ming_setscale | Set scale (?), returns void]
  3538. ming_setscale(|int scale)
  3539. [ming_useswfversion | Use SWF version (?), returns void]
  3540. ming_useswfversion(|int version)
  3541. [SWFAction | Creates a new Action., returns new]
  3542. swfaction(|string script)
  3543. [SWFBitmap->getHeight | Returns the bitmap's height., returns int]
  3544. swfbitmap->getheight()|
  3545. [SWFBitmap->getWidth | Returns the bitmap's width., returns int]
  3546. swfbitmap->getwidth()|
  3547. [SWFBitmap | Loads Bitmap object, returns new]
  3548. swfbitmap(|string filename, [int alphafilename])
  3549. [swfbutton_keypress | Returns the action flag for keyPress(char), returns int]
  3550. swfbutton_keypress(|string str)
  3551. [SWFbutton->addAction | Adds an action, returns void]
  3552. swfbutton->addaction(|resource action, int flags)
  3553. [SWFbutton->addShape | Adds a shape to a button, returns void]
  3554. swfbutton->addshape(|resource shape, int flags)
  3555. [SWFbutton->setAction | Sets the action, returns void]
  3556. swfbutton->setaction(|resource action)
  3557. [SWFbutton->setdown | Alias for addShape(shape, SWFBUTTON_DOWN)), returns void]
  3558. swfbutton->setdown(|resource shape)
  3559. [SWFbutton->setHit | Alias for addShape(shape, SWFBUTTON_HIT), returns void]
  3560. swfbutton->sethit(|resource shape)
  3561. [SWFbutton->setOver | Alias for addShape(shape, SWFBUTTON_OVER), returns void]
  3562. swfbutton->setover(|resource shape)
  3563. [SWFbutton->setUp | Alias for addShape(shape, SWFBUTTON_UP), returns void]
  3564. swfbutton->setup(|resource shape)
  3565. [SWFbutton | Creates a new Button., returns new]
  3566. swfbutton()|
  3567. [SWFDisplayItem->addColor | Adds the given color to this item's color transform., returns void]
  3568. swfdisplayitem->addcolor(|[int red], [int green], [int blue], [int a])
  3569. [SWFDisplayItem->move | Moves object in relative coordinates., returns void]
  3570. swfdisplayitem->move(|int dx, int dy)
  3571. [SWFDisplayItem->moveTo | Moves object in global coordinates., returns void]
  3572. swfdisplayitem->moveto(|int x, int y)
  3573. [SWFDisplayItem->multColor | Multiplies the item's color transform., returns void]
  3574. swfdisplayitem->multcolor(|[int red], [int green], [int blue], [int a])
  3575. [SWFDisplayItem->remove | Removes the object from the movie, returns void]
  3576. swfdisplayitem->remove()|
  3577. [SWFDisplayItem->Rotate | Rotates in relative coordinates., returns void]
  3578. swfdisplayitem->rotate(|float ddegrees)
  3579. [SWFDisplayItem->rotateTo | Rotates the object in global coordinates., returns void]
  3580. swfdisplayitem->rotateto(|float degrees)
  3581. [SWFDisplayItem->scale | Scales the object in relative coordinates., returns void]
  3582. swfdisplayitem->scale(|int dx, int dy)
  3583. [SWFDisplayItem->scaleTo | Scales the object in global coordinates., returns void]
  3584. swfdisplayitem->scaleto(|int x, int y)
  3585. [SWFDisplayItem->setDepth | Sets z-order, returns void]
  3586. swfdisplayitem->setdepth(|float depth)
  3587. [SWFDisplayItem->setName | Sets the object's name, returns void]
  3588. swfdisplayitem->setname(|string name)
  3589. [SWFDisplayItem->setRatio | Sets the object's ratio., returns void]
  3590. swfdisplayitem->setratio(|float ratio)
  3591. [SWFDisplayItem->skewX | Sets the X-skew., returns void]
  3592. swfdisplayitem->skewx(|float ddegrees)
  3593. [SWFDisplayItem->skewXTo | Sets the X-skew., returns void]
  3594. swfdisplayitem->skewxto(|float degrees)
  3595. [SWFDisplayItem->skewY | Sets the Y-skew., returns void]
  3596. swfdisplayitem->skewy(|float ddegrees)
  3597. [SWFDisplayItem->skewYTo | Sets the Y-skew., returns void]
  3598. swfdisplayitem->skewyto(|float degrees)
  3599. [SWFDisplayItem | Creates a new displayitem object., returns new]
  3600. swfdisplayitem()|
  3601. [SWFFill->moveTo | Moves fill origin, returns void]
  3602. swffill->moveto(|int x, int y)
  3603. [SWFFill->rotateTo | Sets fill's rotation, returns void]
  3604. swffill->rotateto(|float degrees)
  3605. [SWFFill->scaleTo | Sets fill's scale, returns void]
  3606. swffill->scaleto(|int x, int y)
  3607. [SWFFill->skewXTo | Sets fill x-skew, returns void]
  3608. swffill->skewxto(|float x)
  3609. [SWFFill->skewYTo | Sets fill y-skew, returns void]
  3610. swffill->skewyto(|float y)
  3611. [SWFFill | Loads SWFFill object, returns new]
  3612. SWFFill()|
  3613. [swffont->getwidth | Returns the string's width, returns int]
  3614. swffont->getwidth(|string string)
  3615. [SWFFont | Loads a font definition, returns new]
  3616. swffont(|string filename)
  3617. [SWFGradient->addEntry | Adds an entry to the gradient list., returns void]
  3618. swfgradient->addentry(|float ratio, int red, int green, int blue, [int a])
  3619. [SWFGradient | Creates a gradient object, returns new]
  3620. swfgradient()|
  3621. [SWFMorph->getshape1 | Gets a handle to the starting shape, returns mixed]
  3622. swfmorph->getshape1()|
  3623. [SWFMorph->getshape2 | Gets a handle to the ending shape, returns mixed]
  3624. swfmorph->getshape2()|
  3625. [SWFMorph | Creates a new SWFMorph object., returns new]
  3626. swfmorph()|
  3627. [SWFMovie->add | Adds any type of data to a movie., returns void]
  3628. swfmovie->add(|resource instance)
  3629. [SWFMovie->nextframe | Moves to the next frame of the animation., returns void]
  3630. swfmovie->nextframe()|
  3631. [SWFMovie->output | Dumps your lovingly prepared movie out., returns void]
  3632. swfmovie->output()|
  3633. [swfmovie->remove | Removes the object instance from the display list., returns void]
  3634. swfmovie->remove(|resource instance)
  3635. [SWFMovie->save | Saves your movie in a file., returns void]
  3636. swfmovie->save(|string filename)
  3637. [SWFMovie->setbackground | Sets the background color., returns void]
  3638. swfmovie->setbackground(|int red, int green, int blue)
  3639. [SWFMovie->setdimension | Sets the movie's width and height., returns void]
  3640. swfmovie->setdimension(|int width, int height)
  3641. [SWFMovie->setframes | Sets the total number of frames in the animation., returns void]
  3642. swfmovie->setframes(|string numberofframes)
  3643. [SWFMovie->setrate | Sets the animation's frame rate., returns void]
  3644. swfmovie->setrate(|int rate)
  3645. [SWFMovie->streammp3 | Streams a MP3 file., returns void]
  3646. swfmovie->streammp3(|string mp3FileName)
  3647. [SWFMovie | Creates a new movie object, representing an SWF version 4 movie., returns new]
  3648. swfmovie()|
  3649. [SWFShape->addFill | Adds a solid fill to the shape., returns void]
  3650. swfshape->addfill(|int red, int green, int blue, [int a])
  3651. [SWFShape->drawCurve | Draws a curve (relative)., returns void]
  3652. swfshape->drawcurve(|int controldx, int controldy, int anchordx, int anchordy)
  3653. [SWFShape->drawCurveTo | Draws a curve., returns void]
  3654. swfshape->drawcurveto(|int controlx, int controly, int anchorx, int anchory)
  3655. [SWFShape->drawLine | Draws a line (relative)., returns void]
  3656. swfshape->drawline(|int dx, int dy)
  3657. [SWFShape->drawLineTo | Draws a line., returns void]
  3658. swfshape->drawlineto(|int x, int y)
  3659. [SWFShape->movePen | Moves the shape's pen (relative)., returns void]
  3660. swfshape->movepen(|int dx, int dy)
  3661. [SWFShape->movePenTo | Moves the shape's pen., returns void]
  3662. swfshape->movepento(|int x, int y)
  3663. [SWFShape->setLeftFill | Sets left rasterizing color., returns void]
  3664. swfshape->setleftfill(|swfgradient fill)
  3665. [SWFShape->setLine | Sets the shape's line style., returns void]
  3666. swfshape->setline(|int width, [int red], [int green], [int blue], [int a])
  3667. [SWFShape->setRightFill | Sets right rasterizing color., returns void]
  3668. swfshape->setrightfill(|swfgradient fill)
  3669. [SWFShape | Creates a new shape object., returns new]
  3670. swfshape()|
  3671. [swfsprite->add | Adds an object to a sprite, returns void]
  3672. swfsprite->add(|resource object)
  3673. [SWFSprite->nextframe | Moves to the next frame of the animation., returns void]
  3674. swfsprite->nextframe()|
  3675. [SWFSprite->remove | Removes an object to a sprite, returns void]
  3676. swfsprite->remove(|resource object)
  3677. [SWFSprite->setframes | Sets the total number of frames in the animation., returns void]
  3678. swfsprite->setframes(|int numberofframes)
  3679. [SWFSprite | Creates a movie clip (a sprite), returns new]
  3680. swfsprite()|
  3681. [SWFText->addString | Draws a string, returns void]
  3682. swftext->addstring(|string string)
  3683. [SWFText->getWidth | Computes string's width, returns void]
  3684. swftext->getwidth(|string string)
  3685. [SWFText->moveTo | Moves the pen, returns void]
  3686. swftext->moveto(|int x, int y)
  3687. [SWFText->setColor | Sets the current font color, returns void]
  3688. swftext->setcolor(|int red, int green, int blue, [int a])
  3689. [SWFText->setFont | Sets the current font, returns void]
  3690. swftext->setfont(|string font)
  3691. [SWFText->setHeight | Sets the current font height, returns void]
  3692. swftext->setheight(|int height)
  3693. [SWFText->setSpacing | Sets the current font spacing, returns void]
  3694. swftext->setspacing(|float spacing)
  3695. [SWFText | Creates a new SWFText object., returns new]
  3696. swftext()|
  3697. [SWFTextField->addstring | Concatenates the given string to the text field, returns void]
  3698. swftextfield->addstring(|string string)
  3699. [SWFTextField->align | Sets the text field alignment, returns void]
  3700. swftextfield->align(|int alignement)
  3701. [SWFTextField->setbounds | Sets the text field width and height, returns void]
  3702. swftextfield->setbounds(|int width, int height)
  3703. [SWFTextField->setcolor | Sets the color of the text field., returns void]
  3704. swftextfield->setcolor(|int red, int green, int blue, [int a])
  3705. [SWFTextField->setFont | Sets the text field font, returns void]
  3706. swftextfield->setfont(|string font)
  3707. [SWFTextField->setHeight | Sets the font height of this text field font., returns void]
  3708. swftextfield->setheight(|int height)
  3709. [SWFTextField->setindentation | Sets the indentation of the first line., returns void]
  3710. swftextfield->setindentation(|int width)
  3711. [SWFTextField->setLeftMargin | Sets the left margin width of the text field., returns void]
  3712. swftextfield->setleftmargin(|int width)
  3713. [SWFTextField->setLineSpacing | Sets the line spacing of the text field., returns void]
  3714. swftextfield->setlinespacing(|int height)
  3715. [SWFTextField->setMargins | Sets the margins width of the text field., returns void]
  3716. swftextfield->setmargins(|int left, int right)
  3717. [SWFTextField->setname | Sets the variable name, returns void]
  3718. swftextfield->setname(|string name)
  3719. [SWFTextField->setrightMargin | Sets the right margin width of the text field., returns void]
  3720. swftextfield->setrightmargin(|int width)
  3721. [SWFTextField | Creates a text field object, returns new]
  3722. swftextfield(|[int flags])
  3723. ; -----------------------------------------------------------------------------
  3724. ; Misc. - Miscellaneous functions
  3725. ; -----------------------------------------------------------------------------
  3726. [connection_aborted | Returns TRUE if client disconnected, returns int]
  3727. connection_aborted()|
  3728. [connection_status | Returns connection status bitfield, returns int]
  3729. connection_status()|
  3730. [connection_timeout | Return TRUE if script timed out, returns bool]
  3731. connection_timeout()|
  3732. [constant | Returns the value of a constant, returns mixed]
  3733. constant(|string name)
  3734. [define | Defines a named constant., returns bool]
  3735. define(|string name, mixed value, [bool case_insensitive])
  3736. [defined | Checks whether a given named constant exists, returns bool]
  3737. defined(|string name)
  3738. [die | Alias of exit]
  3739. [eval | Evaluate a string as PHP code, returns mixed]
  3740. eval(|string code_str)
  3741. [exit | Output a message and terminate the current script, returns void]
  3742. exit(|[string status])
  3743. [get_browser | Tells what the user's browser is capable of, returns object]
  3744. get_browser(|[string user_agent])
  3745. [highlight_file | Syntax highlighting of a file, returns mixed]
  3746. highlight_file(|string filename, [bool return])
  3747. [highlight_string | Syntax highlighting of a string, returns mixed]
  3748. highlight_string(|string str, [bool return])
  3749. [ignore_user_abort | Set whether a client disconnect should abort script execution, returns int]
  3750. ignore_user_abort(|[bool setting])
  3751. [pack | Pack data into binary string., returns string]
  3752. pack(|string format, [mixed args])
  3753. [show_source | Alias of highlight_file]
  3754. [sleep | Delay execution, returns void]
  3755. sleep(|int seconds)
  3756. [uniqid | Generate a unique ID, returns string]
  3757. uniqid(|string prefix, [bool lcg])
  3758. [unpack | Unpack data from binary string, returns array]
  3759. unpack(|string format, string data)
  3760. [usleep | Delay execution in microseconds, returns void]
  3761. usleep(|int micro_seconds)
  3762. ; -----------------------------------------------------------------------------
  3763. ; mnoGoSearch - mnoGoSearch Functions
  3764. ; -----------------------------------------------------------------------------
  3765. [udm_add_search_limit | Add various search limits, returns bool]
  3766. udm_add_search_limit(|resource agent, int var, string val)
  3767. [udm_alloc_agent | Allocate mnoGoSearch session, returns resource]
  3768. udm_alloc_agent(|string dbaddr, [string dbmode])
  3769. [udm_api_version | Get mnoGoSearch API version., returns int]
  3770. udm_api_version()|
  3771. [udm_cat_list | Get all the categories on the same level with the current one., returns array]
  3772. udm_cat_list(|resource agent, string category)
  3773. [udm_cat_path | Get the path to the current category., returns array]
  3774. udm_cat_path(|resource agent, string category)
  3775. [udm_check_charset | Check if the given charset is known to mnogosearch, returns bool]
  3776. udm_check_charset(|resource agent, string charset)
  3777. [udm_check_stored | Check connection to stored, returns int]
  3778. udm_check_stored(|resource agent, int link, string doc_id)
  3779. [udm_clear_search_limits | Clear all mnoGoSearch search restrictions, returns bool]
  3780. udm_clear_search_limits(|resource agent)
  3781. [udm_close_stored | Close connection to stored, returns int]
  3782. udm_close_stored(|resource agent, int link)
  3783. [udm_crc32 | Return CRC32 checksum of gived string, returns int]
  3784. udm_crc32(|resource agent, string str)
  3785. [udm_errno | Get mnoGoSearch error number, returns int]
  3786. udm_errno(|resource agent)
  3787. [udm_error | Get mnoGoSearch error message, returns string]
  3788. udm_error(|resource agent)
  3789. [udm_find | Perform search, returns resource]
  3790. udm_find(|resource agent, string query)
  3791. [udm_free_agent | Free mnoGoSearch session, returns int]
  3792. udm_free_agent(|resource agent)
  3793. [udm_free_ispell_data | Free memory allocated for ispell data, returns bool]
  3794. udm_free_ispell_data(|int agent)
  3795. [udm_free_res | Free mnoGoSearch result, returns bool]
  3796. udm_free_res(|resource res)
  3797. [udm_get_doc_count | Get total number of documents in database., returns int]
  3798. udm_get_doc_count(|resource agent)
  3799. [udm_get_res_field | Fetch mnoGoSearch result field, returns string]
  3800. udm_get_res_field(|resource res, int row, int field)
  3801. [udm_get_res_param | Get mnoGoSearch result parameters, returns string]
  3802. udm_get_res_param(|resource res, int param)
  3803. [udm_load_ispell_data | Load ispell data, returns bool]
  3804. udm_load_ispell_data(|resource agent, int var, string val1, string val2, int flag)
  3805. [udm_open_stored | Open connection to stored, returns int]
  3806. udm_open_stored(|resource agent, string storedaddr)
  3807. [udm_set_agent_param | Set mnoGoSearch agent session parameters, returns bool]
  3808. udm_set_agent_param(|resource agent, int var, string val)
  3809. ; -----------------------------------------------------------------------------
  3810. ; mSQL - mSQL functions
  3811. ; -----------------------------------------------------------------------------
  3812. [msql_affected_rows | Returns number of affected rows, returns int]
  3813. msql_affected_rows(|int query_identifier)
  3814. [msql_close | Close mSQL connection, returns int]
  3815. msql_close(|int link_identifier)
  3816. [msql_connect | Open mSQL connection, returns int]
  3817. msql_connect(|[string hostname], [string server], [string username], [string password])
  3818. [msql_create_db | Create mSQL database, returns int]
  3819. msql_create_db(|string database_name, [int link_identifier])
  3820. [msql_createdb | Create mSQL database, returns int]
  3821. msql_createdb(|string database_name, [int link_identifier])
  3822. [msql_data_seek | Move internal row pointer, returns int]
  3823. msql_data_seek(|int query_identifier, int row_number)
  3824. [msql_dbname | Get current mSQL database name, returns string]
  3825. msql_dbname(|int query_identifier, int i)
  3826. [msql_drop_db | Drop (delete) mSQL database, returns int]
  3827. msql_drop_db(|string database_name, int link_identifier)
  3828. [msql_dropdb | Drop (delete) mSQL database]
  3829. [msql_error | Returns error message of last msql call, returns string]
  3830. msql_error(|[int link_identifier])
  3831. [msql_fetch_array | Fetch row as array, returns int]
  3832. msql_fetch_array(|int query_identifier, [int result_type])
  3833. [msql_fetch_field | Get field information, returns object]
  3834. msql_fetch_field(|int query_identifier, int field_offset)
  3835. [msql_fetch_object | Fetch row as object, returns int]
  3836. msql_fetch_object(|int query_identifier, [int result_type])
  3837. [msql_fetch_row | Get row as enumerated array, returns array]
  3838. msql_fetch_row(|int query_identifier)
  3839. [msql_field_seek | Set field offset, returns int]
  3840. msql_field_seek(|int query_identifier, int field_offset)
  3841. [msql_fieldflags | Get field flags, returns string]
  3842. msql_fieldflags(|int query_identifier, int i)
  3843. [msql_fieldlen | Get field length, returns int]
  3844. msql_fieldlen(|int query_identifier, int i)
  3845. [msql_fieldname | Get field name, returns string]
  3846. msql_fieldname(|int query_identifier, int field)
  3847. [msql_fieldtable | Get table name for field, returns int]
  3848. msql_fieldtable(|int query_identifier, int field)
  3849. [msql_fieldtype | Get field type, returns string]
  3850. msql_fieldtype(|int query_identifier, int i)
  3851. [msql_free_result | Free result memory, returns int]
  3852. msql_free_result(|int query_identifier)
  3853. [msql_freeresult | Free result memory]
  3854. [msql_list_dbs | List mSQL databases on server, returns int]
  3855. msql_list_dbs()|
  3856. [msql_list_fields | List result fields, returns int]
  3857. msql_list_fields(|string database, string tablename)
  3858. [msql_list_tables | List tables in an mSQL database, returns int]
  3859. msql_list_tables(|string database)
  3860. [msql_listdbs | List mSQL databases on server]
  3861. [msql_listfields | List result fields]
  3862. [msql_listtables | List tables in an mSQL database]
  3863. [msql_num_fields | Get number of fields in result, returns int]
  3864. msql_num_fields(|int query_identifier)
  3865. [msql_num_rows | Get number of rows in result, returns int]
  3866. msql_num_rows(|resource query_identifier)
  3867. [msql_numfields | Get number of fields in result, returns int]
  3868. msql_numfields(|int query_identifier)
  3869. [msql_numrows | Get number of rows in result, returns int]
  3870. msql_numrows()|
  3871. [msql_pconnect | Open persistent mSQL connection, returns int]
  3872. msql_pconnect(|[string server], [string username], [string password])
  3873. [msql_query | Send mSQL query, returns int]
  3874. msql_query(|string query, int link_identifier)
  3875. [msql_regcase | Make regular expression for case insensitive match]
  3876. [msql_result | Get result data, returns int]
  3877. msql_result(|int query_identifier, int i, mixed field)
  3878. [msql_select_db | Select mSQL database, returns int]
  3879. msql_select_db(|string database_name, int link_identifier)
  3880. [msql_selectdb | Select mSQL database]
  3881. [msql_tablename | Get table name of field, returns string]
  3882. msql_tablename(|int query_identifier, int field)
  3883. [msql | Send mSQL query, returns int]
  3884. msql(|string database, string query, int link_identifier)
  3885. ; -----------------------------------------------------------------------------
  3886. ; MySQL - MySQL Functions
  3887. ; -----------------------------------------------------------------------------
  3888. [mysql_affected_rows | Get number of affected rows in previous MySQL operation, returns int]
  3889. mysql_affected_rows(|[resource link_identifier])
  3890. [mysql_change_user | Change logged in user of the active connection, returns int]
  3891. mysql_change_user(|string user, string password, [string database], [resource link_identifier])
  3892. [mysql_client_encoding | Returns the name of the character set, returns int]
  3893. mysql_client_encoding(|[resource link_identifier])
  3894. [mysql_close | Close MySQL connection, returns bool]
  3895. mysql_close(|[resource link_identifier])
  3896. [mysql_connect | Open a connection to a MySQL Server, returns resource]
  3897. mysql_connect(|[string server], [string username], [string password], [bool new_link], [int client_flags])
  3898. [mysql_create_db | Create a MySQL database, returns bool]
  3899. mysql_create_db(|string database_name, [resource link_identifier])
  3900. [mysql_data_seek | Move internal result pointer, returns bool]
  3901. mysql_data_seek(|resource result_identifier, int row_number)
  3902. [mysql_db_name | Get result data, returns string]
  3903. mysql_db_name(|resource result, int row, [mixed field])
  3904. [mysql_db_query | Send a MySQL query, returns resource]
  3905. mysql_db_query(|string database, string query, [resource link_identifier])
  3906. [mysql_drop_db | Drop (delete) a MySQL database, returns bool]
  3907. mysql_drop_db(|string database_name, [resource link_identifier])
  3908. [mysql_errno | Returns the numerical value of the error message from previous MySQL operation, returns int]
  3909. mysql_errno(|[resource link_identifier])
  3910. [mysql_error | Returns the text of the error message from previous MySQL operation, returns string]
  3911. mysql_error(|[resource link_identifier])
  3912. [mysql_escape_string | Escapes a string for use in a mysql_query., returns string]
  3913. mysql_escape_string(|string unescaped_string)
  3914. [mysql_fetch_array | Fetch a result row as an associative array, a numeric array, or both., returns array]
  3915. mysql_fetch_array(|resource result, [int result_type])
  3916. [mysql_fetch_assoc | Fetch a result row as an associative array, returns array]
  3917. mysql_fetch_assoc(|resource result)
  3918. [mysql_fetch_field | Get column information from a result and return as an object, returns object]
  3919. mysql_fetch_field(|resource result, [int field_offset])
  3920. [mysql_fetch_lengths | Get the length of each output in a result, returns array]
  3921. mysql_fetch_lengths(|resource result)
  3922. [mysql_fetch_object | Fetch a result row as an object, returns object]
  3923. mysql_fetch_object(|resource result)
  3924. [mysql_fetch_row | Get a result row as an enumerated array, returns array]
  3925. mysql_fetch_row(|resource result)
  3926. [mysql_field_flags | Get the flags associated with the specified field in a result, returns string]
  3927. mysql_field_flags(|resource result, int field_offset)
  3928. [mysql_field_len | Returns the length of the specified field, returns int]
  3929. mysql_field_len(|resource result, int field_offset)
  3930. [mysql_field_name | Get the name of the specified field in a result, returns string]
  3931. mysql_field_name(|resource result, int field_index)
  3932. [mysql_field_seek | Set result pointer to a specified field offset, returns int]
  3933. mysql_field_seek(|resource result, int field_offset)
  3934. [mysql_field_table | Get name of the table the specified field is in, returns string]
  3935. mysql_field_table(|resource result, int field_offset)
  3936. [mysql_field_type | Get the type of the specified field in a result, returns string]
  3937. mysql_field_type(|resource result, int field_offset)
  3938. [mysql_free_result | Free result memory, returns bool]
  3939. mysql_free_result(|resource result)
  3940. [mysql_get_client_info | Get MySQL client info, returns string]
  3941. mysql_get_client_info()|
  3942. [mysql_get_host_info | Get MySQL host info, returns string]
  3943. mysql_get_host_info(|[resource link_identifier])
  3944. [mysql_get_proto_info | Get MySQL protocol info, returns int]
  3945. mysql_get_proto_info(|[resource link_identifier])
  3946. [mysql_get_server_info | Get MySQL server info, returns string]
  3947. mysql_get_server_info(|[resource link_identifier])
  3948. [mysql_info | Get information about the most recent query, returns string]
  3949. mysql_info(|[resource link_identifier])
  3950. [mysql_insert_id | Get the ID generated from the previous INSERT operation, returns int]
  3951. mysql_insert_id(|[resource link_identifier])
  3952. [mysql_list_dbs | List databases available on a MySQL server, returns resource]
  3953. mysql_list_dbs(|[resource link_identifier])
  3954. [mysql_list_fields | List MySQL table fields, returns resource]
  3955. mysql_list_fields(|string database_name, string table_name, [resource link_identifier])
  3956. [mysql_list_processes | List MySQL processes, returns resource]
  3957. mysql_list_processes(|[resource link_identifier])
  3958. [mysql_list_tables | List tables in a MySQL database, returns resource]
  3959. mysql_list_tables(|string database, [resource link_identifier])
  3960. [mysql_num_fields | Get number of fields in result, returns int]
  3961. mysql_num_fields(|resource result)
  3962. [mysql_num_rows | Get number of rows in result, returns int]
  3963. mysql_num_rows(|resource result)
  3964. [mysql_pconnect | Open a persistent connection to a MySQL server, returns resource]
  3965. mysql_pconnect(|[string server], [string username], [string password], [int client_flags])
  3966. [mysql_ping | Ping a server connection or reconnect if there is no connection, returns bool]
  3967. mysql_ping(|[resource link_identifier])
  3968. [mysql_query | Send a MySQL query, returns resource]
  3969. mysql_query(|string query, [resource link_identifier])
  3970. [mysql_real_escape_string | Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection., returns string]
  3971. mysql_real_escape_string(|string unescaped_string, [resource link_identifier])
  3972. [mysql_result | Get result data, returns mixed]
  3973. mysql_result(|resource result, int row, [mixed field])
  3974. [mysql_select_db | Select a MySQL database, returns bool]
  3975. mysql_select_db(|string database_name, [resource link_identifier])
  3976. [mysql_stat | Get current system status, returns string]
  3977. mysql_stat(|[resource link_identifier])
  3978. [mysql_tablename | Get table name of field, returns string]
  3979. mysql_tablename(|resource result, int i)
  3980. [mysql_thread_id | Return the current thread ID, returns int]
  3981. mysql_thread_id(|[resource link_identifier])
  3982. [mysql_unbuffered_query | Send an SQL query to MySQL, without fetching and buffering the result rows, returns resource]
  3983. mysql_unbuffered_query(|string query, [resource link_identifier])
  3984. ; -----------------------------------------------------------------------------
  3985. ; mysqli - Improved MySQL Extension
  3986. ; -----------------------------------------------------------------------------
  3987. [mysqli_affected_rows | Gets the number of affected rows in a previous MySQL operation, returns mixed]
  3988. mysqli_affected_rows(|object link)
  3989. [mysqli_autocommit | Turns on or off auto-commiting database modifications, returns bool]
  3990. mysqli_autocommit(|object link, bool mode)
  3991. [mysqli_bind_param | Binds variables to a prepared statement as parameters, returns bool]
  3992. mysqli_bind_param(|object stmt, array types, mixed var1, [mixed var2, ...])
  3993. [mysqli_bind_result | Binds variables to a prepared statement for result storage, returns bool]
  3994. mysqli_bind_result(|resource stmt, mixed var, int len)
  3995. [mysqli_change_user | Changes the user of the specified database connection, returns bool]
  3996. mysqli_change_user(|resource link, string user, string password, string database)
  3997. [mysqli_character_set_name | Returns the default character set for the database connection, returns string]
  3998. mysqli_character_set_name(|resource link)
  3999. [mysqli_close | Closes a previously opened database connection, returns bool]
  4000. mysqli_close(|resource link)
  4001. [mysqli_commit | Commits the current transaction, returns bool]
  4002. mysqli_commit(|resource link)
  4003. [mysqli_connect | Open a new connection to the MySQL server, returns resource]
  4004. mysqli_connect(|[string hostname], [string username], [string passwd], [string dbname], [int port], [string socket])
  4005. [mysqli_data_seek | Adjusts the result pointer to an arbitary row in the result, returns void]
  4006. mysqli_data_seek(|resource result, int offset)
  4007. [mysqli_debug | Performs debugging operations, returns void]
  4008. mysqli_debug(|string debug)
  4009. [mysqli_disable_reads_from_master | , returns void]
  4010. mysqli_disable_reads_from_master(|resource link)
  4011. [mysqli_disable_rpl_parse | , returns void]
  4012. mysqli_disable_rpl_parse(|resource link)
  4013. [mysqli_dump_debug_info | Dump debugging information into the log, returns bool]
  4014. mysqli_dump_debug_info(|resource link)
  4015. [mysqli_enable_reads_from_master | , returns void]
  4016. mysqli_enable_reads_from_master(|resource link)
  4017. [mysqli_enable_rpl_parse | , returns void]
  4018. mysqli_enable_rpl_parse(|resource link)
  4019. [mysqli_errno | Returns the error code for the most recent function call, returns int]
  4020. mysqli_errno(|resource link)
  4021. [mysqli_error | Returns a string description of the last error, returns string]
  4022. mysqli_error(|resource link)
  4023. [mysqli_execute | Executes a prepared Query, returns int]
  4024. mysqli_execute(|resource stmt)
  4025. [mysqli_fetch_array | Fetch a result row as an associative, a numeric array, or both., returns array]
  4026. mysqli_fetch_array(|resource result, [int resulttype])
  4027. [mysqli_fetch_assoc | Fetch a result row as an associative array, returns array]
  4028. mysqli_fetch_assoc(|resource result)
  4029. [mysqli_fetch_field_direct | Fetch meta-data for a single field, returns int]
  4030. mysqli_fetch_field_direct(|resource result, int offset)
  4031. [mysqli_fetch_field | Returns the next field in the result set, returns object]
  4032. mysqli_fetch_field(|resource result)
  4033. [mysqli_fetch_fields | Returns an array of objects representing the fields in a result set, returns array]
  4034. mysqli_fetch_fields(|resource result)
  4035. [mysqli_fetch_lengths | Returns the lengths of the columns of the current row in the result set, returns array]
  4036. mysqli_fetch_lengths(|resource result)
  4037. [mysqli_fetch_object | Returns the current row of a result set as an object, returns object]
  4038. mysqli_fetch_object(|resource result)
  4039. [mysqli_fetch_row | Get a result row as an enumerated array, returns array]
  4040. mysqli_fetch_row(|resource result)
  4041. [mysqli_fetch | Fetch results from a prepared statement into the bound variables, returns int]
  4042. mysqli_fetch(|resource stmt)
  4043. [mysqli_field_count | Returns the number of columns for the most recent query, returns int]
  4044. mysqli_field_count(|resource link)
  4045. [mysqli_field_seek | Set result pointer to a specified field offset, returns int]
  4046. mysqli_field_seek(|resource link, int fieldnr)
  4047. [mysqli_field_tell | Get current field offset of a result pointer, returns int]
  4048. mysqli_field_tell(|resource result)
  4049. [mysqli_free_result | Frees the memory associated with a result, returns int]
  4050. mysqli_free_result(|resource result)
  4051. [mysqli_get_client_info | Returns the MySQL client version as a string, returns string]
  4052. mysqli_get_client_info(|void )
  4053. [mysqli_get_host_info | Returns a string representing the type of connection used, returns string]
  4054. mysqli_get_host_info(|resource link)
  4055. [mysqli_get_proto_info | Returns the version of the MySQL protocol used, returns int]
  4056. mysqli_get_proto_info(|resource link)
  4057. [mysqli_get_server_info | Returns the version of the MySQL server, returns string]
  4058. mysqli_get_server_info(|resource link)
  4059. [mysqli_get_server_version | Returns the version of the MySQL server as an integer, returns int]
  4060. mysqli_get_server_version(|resource link)
  4061. [mysqli_info | Retrieves information about the most recently executed query, returns string]
  4062. mysqli_info(|resource link)
  4063. [mysqli_init | Initializes MySQLi and returns a resource for use with mysqli_real_connect, returns resource]
  4064. mysqli_init()|
  4065. [mysqli_insert_id | Returns the auto generated id used in the last query, returns mixed]
  4066. mysqli_insert_id(|resource link)
  4067. [mysqli_kill | Asks the server to kill a MySQL thread, returns bool]
  4068. mysqli_kill(|resource link, int processid)
  4069. [mysqli_master_query | Enforce execution of a query on the master in a master/slave setup, returns bool]
  4070. mysqli_master_query(|resource link, string query)
  4071. [mysqli_num_fields | Get the number of fields in a result, returns int]
  4072. mysqli_num_fields(|resource result)
  4073. [mysqli_num_rows | Gets the number of rows in a result, returns int]
  4074. mysqli_num_rows(|resource result)
  4075. [mysqli_options | set options, returns bool]
  4076. mysqli_options(|resource link, int flags, mixed values)
  4077. [mysqli_param_count | Returns the number of parameter for the given statement, returns int]
  4078. mysqli_param_count(|resource stmt)
  4079. [mysqli_ping | Ping a server connection, or reconnect if there is no connection, returns int]
  4080. mysqli_ping(|resource link)
  4081. [mysqli_prepare_result | , returns resource]
  4082. mysqli_prepare_result(|resource stmt)
  4083. [mysqli_prepare | Prepare a SQL statement for execution, returns resource]
  4084. mysqli_prepare(|resource link, string query)
  4085. [mysqli_profiler | , returns bool]
  4086. mysqli_profiler(|int flags, string info, int port)
  4087. [mysqli_query | Performs a query on the database, returns resource]
  4088. mysqli_query(|resource link, string query, [int resultmode])
  4089. [mysqli_read_query_result | , returns bool]
  4090. mysqli_read_query_result(|resource link)
  4091. [mysqli_real_connect | Opens a connection to a mysql server, returns bool]
  4092. mysqli_real_connect(|resource link, [string hostname], [string username], [string passwd], [string dbname], [int port], [string socket])
  4093. [mysqli_real_escape_string | Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection, returns string]
  4094. mysqli_real_escape_string(|resource link, string escapestr)
  4095. [mysqli_real_query | Execute an SQL query, returns bool]
  4096. mysqli_real_query(|resource link, string query)
  4097. [mysqli_reload | , returns bool]
  4098. mysqli_reload(|resource link)
  4099. [mysqli_rollback | , returns bool]
  4100. mysqli_rollback(|resource link)
  4101. [mysqli_rpl_parse_enabled | , returns int]
  4102. mysqli_rpl_parse_enabled(|resource link)
  4103. [mysqli_rpl_probe | , returns bool]
  4104. mysqli_rpl_probe(|resource link)
  4105. [mysqli_rpl_query_type | , returns int]
  4106. mysqli_rpl_query_type(|string query)
  4107. [mysqli_select_db | Selects the default database for database queries, returns bool]
  4108. mysqli_select_db(|resource link, string dbname)
  4109. [mysqli_send_long_data | , returns bool]
  4110. mysqli_send_long_data(|resource stmt, int param_nr, string data)
  4111. [mysqli_send_query | , returns bool]
  4112. mysqli_send_query(|resource link, string query)
  4113. [mysqli_slave_query | Enforces execution of a query on a slave in a master/slave setup, returns bool]
  4114. mysqli_slave_query(|resource link, string query)
  4115. [mysqli_ssl_set | , returns string]
  4116. mysqli_ssl_set(|resource link, [string key], [string cert], [string ca], [string capath], [string cipher])
  4117. [mysqli_stat | Gets the current system status, returns string]
  4118. mysqli_stat(|resource link)
  4119. [mysqli_stmt_affected_rows | , returns mixed]
  4120. mysqli_stmt_affected_rows(|object stmt)
  4121. [mysqli_stmt_close | close statement, returns bool]
  4122. mysqli_stmt_close(|resource stmt)
  4123. [mysqli_stmt_errno | , returns int]
  4124. mysqli_stmt_errno(|resource stmt)
  4125. [mysqli_stmt_error | , returns string]
  4126. mysqli_stmt_error(|resource stmt)
  4127. [mysqli_stmt_store_result | , returns resource]
  4128. mysqli_stmt_store_result(|resource stmt)
  4129. [mysqli_store_result | Transfers a result set from the last query, returns resource]
  4130. mysqli_store_result(|resource link)
  4131. [mysqli_thread_id | Returns the thread ID for the current connection, returns int]
  4132. mysqli_thread_id(|resource link)
  4133. [mysqli_thread_safe | Returns whether thread safety is given or not, returns bool]
  4134. mysqli_thread_safe(|void )
  4135. [mysqli_use_result | Initiate a result set retrieval, returns resource]
  4136. mysqli_use_result(|resource link)
  4137. [mysqli_warning_count | Returns the number of warnings from the last query for the given link, returns resource]
  4138. mysqli_warning_count(|resource link)
  4139. ; -----------------------------------------------------------------------------
  4140. ; Msession - Mohawk Software session handler functions
  4141. ; -----------------------------------------------------------------------------
  4142. [msession_connect | Connect to msession server, returns bool]
  4143. msession_connect(|string host, string port)
  4144. [msession_count | Get session count, returns int]
  4145. msession_count()|
  4146. [msession_create | Create a session, returns bool]
  4147. msession_create(|string session)
  4148. [msession_destroy | Destroy a session, returns bool]
  4149. msession_destroy(|string name)
  4150. [msession_disconnect | Close connection to msession server, returns void]
  4151. msession_disconnect()|
  4152. [msession_find | Find value, returns array]
  4153. msession_find(|string name, string value)
  4154. [msession_get_array | Get array of ... ?, returns array]
  4155. msession_get_array(|string session)
  4156. [msession_get | Get value from session, returns string]
  4157. msession_get(|string session, string name, string value)
  4158. [msession_getdata | Get data ... ?, returns string]
  4159. msession_getdata(|string session)
  4160. [msession_inc | Increment value in session, returns string]
  4161. msession_inc(|string session, string name)
  4162. [msession_list | List ... ?, returns array]
  4163. msession_list()|
  4164. [msession_listvar | List sessions with variable, returns array]
  4165. msession_listvar(|string name)
  4166. [msession_lock | Lock a session, returns int]
  4167. msession_lock(|string name)
  4168. [msession_plugin | Call an escape function within the msession personality plugin, returns string]
  4169. msession_plugin(|string session, string val, [string param])
  4170. [msession_randstr | Get random string, returns string]
  4171. msession_randstr(|int param)
  4172. [msession_set_array | Set array of ..., returns bool]
  4173. msession_set_array(|string session, array tuples)
  4174. [msession_set | Set value in session, returns bool]
  4175. msession_set(|string session, string name, string value)
  4176. [msession_setdata | Set data ... ?, returns bool]
  4177. msession_setdata(|string session, string value)
  4178. [msession_timeout | Set/get session timeout, returns int]
  4179. msession_timeout(|string session, [int param])
  4180. [msession_uniq | Get uniq id, returns string]
  4181. msession_uniq(|int param)
  4182. [msession_unlock | Unlock a session, returns int]
  4183. msession_unlock(|string session, int key)
  4184. ; -----------------------------------------------------------------------------
  4185. ; muscat - muscat functions
  4186. ; -----------------------------------------------------------------------------
  4187. [muscat_close | Shuts down the muscat session and releases any memory back to PHP., returns int]
  4188. muscat_close(|resource muscat_handle)
  4189. [muscat_get | Gets a line back from the core muscat API., returns string]
  4190. muscat_get(|resource muscat_handle)
  4191. [muscat_give | Sends string to the core muscat API, returns int]
  4192. muscat_give(|resource muscat_handle, string string)
  4193. [muscat_setup_net | Creates a new muscat session and returns the handle., returns resource]
  4194. muscat_setup_net(|string muscat_host, int port)
  4195. [muscat_setup | Creates a new muscat session and returns the handle., returns resource]
  4196. muscat_setup(|int size, [string muscat_dir])
  4197. ; -----------------------------------------------------------------------------
  4198. ; Network - Network Functions
  4199. ; -----------------------------------------------------------------------------
  4200. [checkdnsrr | Check DNS records corresponding to a given Internet host name or IP address, returns int]
  4201. checkdnsrr(|string host, [string type])
  4202. [closelog | Close connection to system logger, returns int]
  4203. closelog()|
  4204. [debugger_off | Disable internal PHP debugger (PHP 3), returns int]
  4205. debugger_off()|
  4206. [debugger_on | Enable internal PHP debugger (PHP 3), returns int]
  4207. debugger_on(|string address)
  4208. [define_syslog_variables | Initializes all syslog related constants, returns void]
  4209. define_syslog_variables()|
  4210. [dns_check_record | Synonym for checkdnsrr, returns int]
  4211. dns_check_record(|string host, [string type])
  4212. [dns_get_mx | Synonym for getmxrr, returns int]
  4213. dns_get_mx(|string hostname, array mxhosts, [array &weight])
  4214. [dns_get_record | Fetch DNS Resource Records associated with a hostname, returns array]
  4215. dns_get_record(|string hostname, [int type], [array &authns], array &addtl)
  4216. [fsockopen | Open Internet or Unix domain socket connection, returns int]
  4217. fsockopen(|string target, int port, [int errno], [string errstr], [float timeout])
  4218. [gethostbyaddr | Get the Internet host name corresponding to a given IP address, returns string]
  4219. gethostbyaddr(|string ip_address)
  4220. [gethostbyname | Get the IP address corresponding to a given Internet host name, returns string]
  4221. gethostbyname(|string hostname)
  4222. [gethostbynamel | Get a list of IP addresses corresponding to a given Internet host name, returns array]
  4223. gethostbynamel(|string hostname)
  4224. [getmxrr | Get MX records corresponding to a given Internet host name, returns int]
  4225. getmxrr(|string hostname, array mxhosts, [array weight])
  4226. [getprotobyname | Get protocol number associated with protocol name, returns int]
  4227. getprotobyname(|string name)
  4228. [getprotobynumber | Get protocol name associated with protocol number, returns string]
  4229. getprotobynumber(|int number)
  4230. [getservbyname | Get port number associated with an Internet service and protocol, returns int]
  4231. getservbyname(|string service, string protocol)
  4232. [getservbyport | Get Internet service which corresponds to port and protocol, returns string]
  4233. getservbyport(|int port, string protocol)
  4234. [ip2long | Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address., returns int]
  4235. ip2long(|string ip_address)
  4236. [long2ip | Converts an (IPv4) Internet network address into a string in Internet standard dotted format, returns string]
  4237. long2ip(|int proper_address)
  4238. [openlog | Open connection to system logger, returns int]
  4239. openlog(|string ident, int option, int facility)
  4240. [pfsockopen | Open persistent Internet or Unix domain socket connection, returns int]
  4241. pfsockopen(|string hostname, int port, [int errno], [string errstr], [int timeout])
  4242. [socket_get_status | Alias of stream_get_meta_data.]
  4243. [socket_set_blocking | Alias for stream_set_blocking]
  4244. [socket_set_timeout | Alias for stream_set_timeout]
  4245. [syslog | Generate a system log message, returns int]
  4246. syslog(|int priority, string message)
  4247. ; -----------------------------------------------------------------------------
  4248. ; Ncurses - Ncurses terminal screen control functions
  4249. ; -----------------------------------------------------------------------------
  4250. [ncurses_addch | Add character at current position and advance cursor, returns int]
  4251. ncurses_addch(|int ch)
  4252. [ncurses_addchnstr | Add attributed string with specified length at current position, returns int]
  4253. ncurses_addchnstr(|string s, int n)
  4254. [ncurses_addchstr | Add attributed string at current position, returns int]
  4255. ncurses_addchstr(|string s)
  4256. [ncurses_addnstr | Add string with specified length at current position, returns int]
  4257. ncurses_addnstr(|string s, int n)
  4258. [ncurses_addstr | Output text at current position, returns int]
  4259. ncurses_addstr(|string text)
  4260. [ncurses_assume_default_colors | Define default colors for color 0, returns int]
  4261. ncurses_assume_default_colors(|int fg, int bg)
  4262. [ncurses_attroff | Turn off the given attributes, returns int]
  4263. ncurses_attroff(|int attributes)
  4264. [ncurses_attron | Turn on the given attributes, returns int]
  4265. ncurses_attron(|int attributes)
  4266. [ncurses_attrset | Set given attributes, returns int]
  4267. ncurses_attrset(|int attributes)
  4268. [ncurses_baudrate | Returns baudrate of terminal, returns int]
  4269. ncurses_baudrate()|
  4270. [ncurses_beep | Let the terminal beep, returns int]
  4271. ncurses_beep()|
  4272. [ncurses_bkgd | Set background property for terminal screen, returns int]
  4273. ncurses_bkgd(|int attrchar)
  4274. [ncurses_bkgdset | Control screen background, returns void]
  4275. ncurses_bkgdset(|int attrchar)
  4276. [ncurses_border | Draw a border around the screen using attributed characters, returns int]
  4277. ncurses_border(|int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
  4278. [ncurses_bottom_panel | Moves a visible panel to the bottom of the stack, returns int]
  4279. ncurses_bottom_panel(|resource panel)
  4280. [ncurses_can_change_color | Check if we can change terminals colors, returns bool]
  4281. ncurses_can_change_color()|
  4282. [ncurses_cbreak | Switch of input buffering, returns bool]
  4283. ncurses_cbreak()|
  4284. [ncurses_clear | Clear screen, returns bool]
  4285. ncurses_clear()|
  4286. [ncurses_clrtobot | Clear screen from current position to bottom, returns bool]
  4287. ncurses_clrtobot()|
  4288. [ncurses_clrtoeol | Clear screen from current position to end of line, returns bool]
  4289. ncurses_clrtoeol()|
  4290. [ncurses_color_content | Gets the RGB value for color, returns int]
  4291. ncurses_color_content(|int color, int &r, int &g, int &b)
  4292. [ncurses_color_set | Set fore- and background color, returns int]
  4293. ncurses_color_set(|int pair)
  4294. [ncurses_curs_set | Set cursor state, returns int]
  4295. ncurses_curs_set(|int visibility)
  4296. [ncurses_def_prog_mode | Saves terminals (program) mode, returns bool]
  4297. ncurses_def_prog_mode()|
  4298. [ncurses_def_shell_mode | Saves terminals (shell) mode, returns bool]
  4299. ncurses_def_shell_mode()|
  4300. [ncurses_define_key | Define a keycode, returns int]
  4301. ncurses_define_key(|string definition, int keycode)
  4302. [ncurses_del_panel | Remove panel from the stack and delete it (but not the associated window), returns int]
  4303. ncurses_del_panel(|resource panel)
  4304. [ncurses_delay_output | Delay output on terminal using padding characters, returns int]
  4305. ncurses_delay_output(|int milliseconds)
  4306. [ncurses_delch | Delete character at current position, move rest of line left, returns bool]
  4307. ncurses_delch()|
  4308. [ncurses_deleteln | Delete line at current position, move rest of screen up, returns bool]
  4309. ncurses_deleteln()|
  4310. [ncurses_delwin | Delete a ncurses window, returns int]
  4311. ncurses_delwin(|resource window)
  4312. [ncurses_doupdate | Write all prepared refreshes to terminal, returns bool]
  4313. ncurses_doupdate()|
  4314. [ncurses_echo | Activate keyboard input echo, returns bool]
  4315. ncurses_echo()|
  4316. [ncurses_echochar | Single character output including refresh, returns int]
  4317. ncurses_echochar(|int character)
  4318. [ncurses_end | Stop using ncurses, clean up the screen, returns int]
  4319. ncurses_end()|
  4320. [ncurses_erase | Erase terminal screen, returns bool]
  4321. ncurses_erase()|
  4322. [ncurses_erasechar | Returns current erase character, returns string]
  4323. ncurses_erasechar()|
  4324. [ncurses_filter | , returns int]
  4325. ncurses_filter()|
  4326. [ncurses_flash | Flash terminal screen (visual bell), returns bool]
  4327. ncurses_flash()|
  4328. [ncurses_flushinp | Flush keyboard input buffer, returns bool]
  4329. ncurses_flushinp()|
  4330. [ncurses_getch | Read a character from keyboard, returns int]
  4331. ncurses_getch()|
  4332. [ncurses_getmaxyx | Returns the size of a window, returns void]
  4333. ncurses_getmaxyx(|resource window, int &y, int &x)
  4334. [ncurses_getmouse | Reads mouse event, returns bool]
  4335. ncurses_getmouse(|array mevent)
  4336. [ncurses_getyx | Returns the current cursor position for a window, returns void]
  4337. ncurses_getyx(|resource window, int &y, int &x)
  4338. [ncurses_halfdelay | Put terminal into halfdelay mode, returns int]
  4339. ncurses_halfdelay(|int tenth)
  4340. [ncurses_has_colors | Check if terminal has colors, returns bool]
  4341. ncurses_has_colors()|
  4342. [ncurses_has_ic | Check for insert- and delete-capabilities, returns bool]
  4343. ncurses_has_ic()|
  4344. [ncurses_has_il | Check for line insert- and delete-capabilities, returns bool]
  4345. ncurses_has_il()|
  4346. [ncurses_has_key | Check for presence of a function key on terminal keyboard, returns int]
  4347. ncurses_has_key(|int keycode)
  4348. [ncurses_hide_panel | Remove panel from the stack, making it invisible, returns int]
  4349. ncurses_hide_panel(|resource panel)
  4350. [ncurses_hline | Draw a horizontal line at current position using an attributed character and max. n characters long, returns int]
  4351. ncurses_hline(|int charattr, int n)
  4352. [ncurses_inch | Get character and attribute at current position, returns string]
  4353. ncurses_inch()|
  4354. [ncurses_init_color | Set new RGB value for color, returns int]
  4355. ncurses_init_color(|int color, int r, int g, int b)
  4356. [ncurses_init_pair | Allocate a color pair, returns int]
  4357. ncurses_init_pair(|int pair, int fg, int bg)
  4358. [ncurses_init | Initialize ncurses, returns int]
  4359. ncurses_init()|
  4360. [ncurses_insch | Insert character moving rest of line including character at current position, returns int]
  4361. ncurses_insch(|int character)
  4362. [ncurses_insdelln | Insert lines before current line scrolling down (negative numbers delete and scroll up), returns int]
  4363. ncurses_insdelln(|int count)
  4364. [ncurses_insertln | Insert a line, move rest of screen down, returns bool]
  4365. ncurses_insertln()|
  4366. [ncurses_insstr | Insert string at current position, moving rest of line right, returns int]
  4367. ncurses_insstr(|string text)
  4368. [ncurses_instr | Reads string from terminal screen, returns int]
  4369. ncurses_instr(|string buffer)
  4370. [ncurses_isendwin | Ncurses is in endwin mode, normal screen output may be performed, returns bool]
  4371. ncurses_isendwin()|
  4372. [ncurses_keyok | Enable or disable a keycode, returns int]
  4373. ncurses_keyok(|int keycode, bool enable)
  4374. [ncurses_keypad | Turns keypad on or off, returns int]
  4375. ncurses_keypad(|resource window, bool bf)
  4376. [ncurses_killchar | Returns current line kill character, returns bool]
  4377. ncurses_killchar()|
  4378. [ncurses_longname | Returns terminals description, returns string]
  4379. ncurses_longname()|
  4380. [ncurses_meta | Enables/Disable 8-bit meta key information, returns long]
  4381. ncurses_meta(|resource window, bool 8bit)
  4382. [ncurses_mouse_trafo | Transforms coordinates, returns bool]
  4383. ncurses_mouse_trafo(|int &y, int &x, bool toscreen)
  4384. [ncurses_mouseinterval | Set timeout for mouse button clicks, returns int]
  4385. ncurses_mouseinterval(|int milliseconds)
  4386. [ncurses_mousemask | Sets mouse options, returns int]
  4387. ncurses_mousemask(|int newmask, int oldmask)
  4388. [ncurses_move_panel | Moves a panel so that it's upper-left corner is at [startx, starty], returns int]
  4389. ncurses_move_panel(|resource panel, int startx, int starty)
  4390. [ncurses_move | Move output position, returns int]
  4391. ncurses_move(|int y, int x)
  4392. [ncurses_mvaddch | Move current position and add character, returns int]
  4393. ncurses_mvaddch(|int y, int x, int c)
  4394. [ncurses_mvaddchnstr | Move position and add attrributed string with specified length, returns int]
  4395. ncurses_mvaddchnstr(|int y, int x, string s, int n)
  4396. [ncurses_mvaddchstr | Move position and add attributed string, returns int]
  4397. ncurses_mvaddchstr(|int y, int x, string s)
  4398. [ncurses_mvaddnstr | Move position and add string with specified length, returns int]
  4399. ncurses_mvaddnstr(|int y, int x, string s, int n)
  4400. [ncurses_mvaddstr | Move position and add string, returns int]
  4401. ncurses_mvaddstr(|int y, int x, string s)
  4402. [ncurses_mvcur | Move cursor immediately, returns int]
  4403. ncurses_mvcur(|int old_y, int old_x, int new_y, int new_x)
  4404. [ncurses_mvdelch | Move position and delete character, shift rest of line left, returns int]
  4405. ncurses_mvdelch(|int y, int x)
  4406. [ncurses_mvgetch | Move position and get character at new position, returns int]
  4407. ncurses_mvgetch(|int y, int x)
  4408. [ncurses_mvhline | Set new position and draw a horizontal line using an attributed character and max. n characters long, returns int]
  4409. ncurses_mvhline(|int y, int x, int attrchar, int n)
  4410. [ncurses_mvinch | Move position and get attributed character at new position, returns int]
  4411. ncurses_mvinch(|int y, int x)
  4412. [ncurses_mvvline | Set new position and draw a vertical line using an attributed character and max. n characters long, returns int]
  4413. ncurses_mvvline(|int y, int x, int attrchar, int n)
  4414. [ncurses_mvwaddstr | Add string at new position in window, returns int]
  4415. ncurses_mvwaddstr(|resource window, int y, int x, string text)
  4416. [ncurses_napms | Sleep, returns int]
  4417. ncurses_napms(|int milliseconds)
  4418. [ncurses_new_panel | Create a new panel and associate it with window, returns resource]
  4419. ncurses_new_panel(|resource window)
  4420. [ncurses_newpad | Creates a new pad (window), returns resource]
  4421. ncurses_newpad(|int rows, int cols)
  4422. [ncurses_newwin | Create a new window, returns int]
  4423. ncurses_newwin(|int rows, int cols, int y, int x)
  4424. [ncurses_nl | Translate newline and carriage return / line feed, returns bool]
  4425. ncurses_nl()|
  4426. [ncurses_nocbreak | Switch terminal to cooked mode, returns bool]
  4427. ncurses_nocbreak()|
  4428. [ncurses_noecho | Switch off keyboard input echo, returns bool]
  4429. ncurses_noecho()|
  4430. [ncurses_nonl | Do not translate newline and carriage return / line feed, returns bool]
  4431. ncurses_nonl()|
  4432. [ncurses_noqiflush | Do not flush on signal characters, returns int]
  4433. ncurses_noqiflush()|
  4434. [ncurses_noraw | Switch terminal out of raw mode, returns bool]
  4435. ncurses_noraw()|
  4436. [ncurses_pair_content | Gets the RGB value for color, returns int]
  4437. ncurses_pair_content(|int pair, int &f, int &b)
  4438. [ncurses_panel_above | Returns the panel above panel. If panel is null, returns the bottom panel in the stack, returns int]
  4439. ncurses_panel_above(|resource panel)
  4440. [ncurses_panel_below | Returns the panel below panel. If panel is null, returns the top panel in the stack, returns int]
  4441. ncurses_panel_below(|resource panel)
  4442. [ncurses_panel_window | Returns the window associated with panel, returns int]
  4443. ncurses_panel_window(|resource panel)
  4444. [ncurses_pnoutrefresh | Copys a region from a pad into the virtual screen, returns int]
  4445. ncurses_pnoutrefresh(|resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
  4446. [ncurses_prefresh | Copys a region from a pad into the virtual screen, returns int]
  4447. ncurses_prefresh(|resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
  4448. [ncurses_putp | , returns int]
  4449. ncurses_putp(|string text)
  4450. [ncurses_qiflush | Flush on signal characters, returns int]
  4451. ncurses_qiflush()|
  4452. [ncurses_raw | Switch terminal into raw mode, returns bool]
  4453. ncurses_raw()|
  4454. [ncurses_refresh | Refresh screen, returns int]
  4455. ncurses_refresh(|int ch)
  4456. [ncurses_replace_panel | Replaces the window associated with panel, returns int]
  4457. ncurses_replace_panel(|resource panel, resource window)
  4458. [ncurses_reset_prog_mode | Resets the prog mode saved by def_prog_mode, returns int]
  4459. ncurses_reset_prog_mode()|
  4460. [ncurses_reset_shell_mode | Resets the shell mode saved by def_shell_mode, returns int]
  4461. ncurses_reset_shell_mode()|
  4462. [ncurses_resetty | Restores saved terminal state, returns bool]
  4463. ncurses_resetty()|
  4464. [ncurses_savetty | Saves terminal state, returns bool]
  4465. ncurses_savetty()|
  4466. [ncurses_scr_dump | Dump screen content to file, returns int]
  4467. ncurses_scr_dump(|string filename)
  4468. [ncurses_scr_init | Initialize screen from file dump, returns int]
  4469. ncurses_scr_init(|string filename)
  4470. [ncurses_scr_restore | Restore screen from file dump, returns int]
  4471. ncurses_scr_restore(|string filename)
  4472. [ncurses_scr_set | Inherit screen from file dump, returns int]
  4473. ncurses_scr_set(|string filename)
  4474. [ncurses_scrl | Scroll window content up or down without changing current position, returns int]
  4475. ncurses_scrl(|int count)
  4476. [ncurses_show_panel | Places an invisible panel on top of the stack, making it visible, returns int]
  4477. ncurses_show_panel(|resource panel)
  4478. [ncurses_slk_attr | Returns current soft label key attribute, returns bool]
  4479. ncurses_slk_attr()|
  4480. [ncurses_slk_attroff | , returns int]
  4481. ncurses_slk_attroff(|int intarg)
  4482. [ncurses_slk_attron | , returns int]
  4483. ncurses_slk_attron(|int intarg)
  4484. [ncurses_slk_attrset | , returns int]
  4485. ncurses_slk_attrset(|int intarg)
  4486. [ncurses_slk_clear | Clears soft labels from screen, returns bool]
  4487. ncurses_slk_clear()|
  4488. [ncurses_slk_color | Sets color for soft label keys, returns int]
  4489. ncurses_slk_color(|int intarg)
  4490. [ncurses_slk_init | Initializes soft label key functions, returns bool]
  4491. ncurses_slk_init(|int format)
  4492. [ncurses_slk_noutrefresh | Copies soft label keys to virtual screen, returns bool]
  4493. ncurses_slk_noutrefresh()|
  4494. [ncurses_slk_refresh | Copies soft label keys to screen, returns bool]
  4495. ncurses_slk_refresh()|
  4496. [ncurses_slk_restore | Restores soft label keys, returns bool]
  4497. ncurses_slk_restore()|
  4498. [ncurses_slk_set | Sets function key labels, returns bool]
  4499. ncurses_slk_set(|int labelnr, string label, int format)
  4500. [ncurses_slk_touch | Fources output when ncurses_slk_noutrefresh is performed, returns bool]
  4501. ncurses_slk_touch()|
  4502. [ncurses_standend | Stop using 'standout' attribute, returns int]
  4503. ncurses_standend()|
  4504. [ncurses_standout | Start using 'standout' attribute, returns int]
  4505. ncurses_standout()|
  4506. [ncurses_start_color | Start using colors, returns int]
  4507. ncurses_start_color()|
  4508. [ncurses_termattrs | Returns a logical OR of all attribute flags supported by terminal, returns bool]
  4509. ncurses_termattrs()|
  4510. [ncurses_termname | Returns terminals (short)-name, returns string]
  4511. ncurses_termname()|
  4512. [ncurses_timeout | Set timeout for special key sequences, returns void]
  4513. ncurses_timeout(|int millisec)
  4514. [ncurses_top_panel | Moves a visible panel to the top of the stack, returns int]
  4515. ncurses_top_panel(|resource panel)
  4516. [ncurses_typeahead | Specify different filedescriptor for typeahead checking, returns int]
  4517. ncurses_typeahead(|int fd)
  4518. [ncurses_ungetch | Put a character back into the input stream, returns int]
  4519. ncurses_ungetch(|int keycode)
  4520. [ncurses_ungetmouse | Pushes mouse event to queue, returns bool]
  4521. ncurses_ungetmouse(|array mevent)
  4522. [ncurses_update_panels | Refreshes the virtual screen to reflect the relations between panels in the stack., returns void]
  4523. ncurses_update_panels()|
  4524. [ncurses_use_default_colors | Assign terminal default colors to color id -1, returns bool]
  4525. ncurses_use_default_colors()|
  4526. [ncurses_use_env | Control use of environment information about terminal size, returns void]
  4527. ncurses_use_env(|bool flag)
  4528. [ncurses_use_extended_names | Control use of extended names in terminfo descriptions, returns int]
  4529. ncurses_use_extended_names(|bool flag)
  4530. [ncurses_vidattr | , returns int]
  4531. ncurses_vidattr(|int intarg)
  4532. [ncurses_vline | Draw a vertical line at current position using an attributed character and max. n characters long, returns int]
  4533. ncurses_vline(|int charattr, int n)
  4534. [ncurses_waddch | Adds character at current position in a window and advance cursor, returns int]
  4535. ncurses_waddch(|resource window, int ch)
  4536. [ncurses_waddstr | Outputs text at current postion in window, returns int]
  4537. ncurses_waddstr(|resource window, string str, [int n])
  4538. [ncurses_wattroff | Turns off attributes for a window, returns int]
  4539. ncurses_wattroff(|resource window, int attrs)
  4540. [ncurses_wattron | Turns on attributes for a window, returns int]
  4541. ncurses_wattron(|resource window, int attrs)
  4542. [ncurses_wattrset | Set the attributes for a window, returns int]
  4543. ncurses_wattrset(|resource window, int attrs)
  4544. [ncurses_wborder | Draws a border around the window using attributed characters, returns int]
  4545. ncurses_wborder(|resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
  4546. [ncurses_wclear | Clears window, returns int]
  4547. ncurses_wclear(|resource window)
  4548. [ncurses_wcolor_set | Sets windows color pairings, returns int]
  4549. ncurses_wcolor_set(|resource window, int color_pair)
  4550. [ncurses_werase | Erase window contents, returns long]
  4551. ncurses_werase(|resource window)
  4552. [ncurses_wgetch | Reads a character from keyboard (window), returns int]
  4553. ncurses_wgetch(|resource window)
  4554. [ncurses_whline | Draws a horizontal line in a window at current position using an attributed character and max. n characters long, returns int]
  4555. ncurses_whline(|resource window, int charattr, int n)
  4556. [ncurses_wmouse_trafo | Transforms window/stdscr coordinates, returns bool]
  4557. ncurses_wmouse_trafo(|resource window, int &y, int &x, bool toscreen)
  4558. [ncurses_wmove | Moves windows output position, returns int]
  4559. ncurses_wmove(|resource window, int y, int x)
  4560. [ncurses_wnoutrefresh | Copies window to virtual screen, returns int]
  4561. ncurses_wnoutrefresh(|resource window)
  4562. [ncurses_wrefresh | Refresh window on terminal screen, returns int]
  4563. ncurses_wrefresh(|resource window)
  4564. [ncurses_wstandend | End standout mode for a window, returns int]
  4565. ncurses_wstandend(|resource window)
  4566. [ncurses_wstandout | Enter standout mode for a window, returns int]
  4567. ncurses_wstandout(|resource window)
  4568. [ncurses_wvline | Draws a vertical line in a window at current position using an attributed character and max. n characters long, returns int]
  4569. ncurses_wvline(|resource window, int charattr, int n)
  4570. ; -----------------------------------------------------------------------------
  4571. ; Lotus Notes - Lotus Notes functions
  4572. ; -----------------------------------------------------------------------------
  4573. [notes_body | Open the message msg_number in the specified mailbox on the specified server (leave serv, returns array]
  4574. notes_body(|string server, string mailbox, int msg_number)
  4575. [notes_copy_db | Create a note using form form_name, returns string]
  4576. notes_copy_db(|string from_database_name, string to_database_name)
  4577. [notes_create_db | Create a Lotus Notes database, returns bool]
  4578. notes_create_db(|string database_name)
  4579. [notes_create_note | Create a note using form form_name, returns string]
  4580. notes_create_note(|string database_name, string form_name)
  4581. [notes_drop_db | Drop a Lotus Notes database, returns bool]
  4582. notes_drop_db(|string database_name)
  4583. [notes_find_note | Returns a note id found in database_name. Specify the name of the note. Leaving type bla, returns bool]
  4584. notes_find_note(|string database_name, string name, [string type])
  4585. [notes_header_info | Open the message msg_number in the specified mailbox on the specified server (leave serv, returns object]
  4586. notes_header_info(|string server, string mailbox, int msg_number)
  4587. [notes_list_msgs | Returns the notes from a selected database_name, returns bool]
  4588. notes_list_msgs(|string db)
  4589. [notes_mark_read | Mark a note_id as read for the User user_name, returns string]
  4590. notes_mark_read(|string database_name, string user_name, string note_id)
  4591. [notes_mark_unread | Mark a note_id as unread for the User user_name, returns string]
  4592. notes_mark_unread(|string database_name, string user_name, string note_id)
  4593. [notes_nav_create | Create a navigator name, in database_name, returns bool]
  4594. notes_nav_create(|string database_name, string name)
  4595. [notes_search | Find notes that match keywords in database_name, returns string]
  4596. notes_search(|string database_name, string keywords)
  4597. [notes_unread | Returns the unread note id's for the current User user_name, returns string]
  4598. notes_unread(|string database_name, string user_name)
  4599. [notes_version | Get the version Lotus Notes, returns string]
  4600. notes_version(|string database_name)
  4601. ; -----------------------------------------------------------------------------
  4602. ; NSAPI - NSAPI-specific Functions
  4603. ; -----------------------------------------------------------------------------
  4604. [nsapi_request_headers | Fetch all HTTP request headers, returns array]
  4605. nsapi_request_headers()|
  4606. [nsapi_response_headers | Fetch all HTTP response headers, returns array]
  4607. nsapi_response_headers()|
  4608. [nsapi_virtual | Perform an NSAPI sub-request, returns int]
  4609. nsapi_virtual(|string uri)
  4610. ; -----------------------------------------------------------------------------
  4611. ; ODBC - Unified ODBC functions
  4612. ; -----------------------------------------------------------------------------
  4613. [odbc_autocommit | Toggle autocommit behaviour, returns bool]
  4614. odbc_autocommit(|resource connection_id, [bool OnOff])
  4615. [odbc_binmode | Handling of binary column data, returns int]
  4616. odbc_binmode(|resource result_id, int mode)
  4617. [odbc_close_all | Close all ODBC connections, returns void]
  4618. odbc_close_all()|
  4619. [odbc_close | Close an ODBC connection, returns void]
  4620. odbc_close(|resource connection_id)
  4621. [odbc_columnprivileges | Returns a result identifier that can be used to fetch a list of columns and associated privileges, returns int]
  4622. odbc_columnprivileges(|resource connection_id, [string qualifier], [string owner], [string table_name], [string column_name])
  4623. [odbc_columns | Lists the column names in specified tables. Returns a result identifier containing the information., returns resource]
  4624. odbc_columns(|resource connection_id, [string qualifier], [string schema], [string table_name], [string column_name])
  4625. [odbc_commit | Commit an ODBC transaction, returns bool]
  4626. odbc_commit(|resource connection_id)
  4627. [odbc_connect | Connect to a datasource, returns resource]
  4628. odbc_connect(|string dsn, string user, string password, [int cursor_type])
  4629. [odbc_cursor | Get cursorname, returns string]
  4630. odbc_cursor(|resource result_id)
  4631. [odbc_data_source | Returns information about a current connection, returns resource]
  4632. odbc_data_source(|resource connection_id, constant fetch_type)
  4633. [odbc_do | Synonym for odbc_exec, returns resource]
  4634. odbc_do(|resource conn_id, string query)
  4635. [odbc_error | Get the last error code, returns string]
  4636. odbc_error(|[resource connection_id])
  4637. [odbc_errormsg | Get the last error message, returns string]
  4638. odbc_errormsg(|[resource connection_id])
  4639. [odbc_exec | Prepare and execute a SQL statement, returns resource]
  4640. odbc_exec(|resource connection_id, string query_string)
  4641. [odbc_execute | Execute a prepared statement, returns bool]
  4642. odbc_execute(|resource result_id, [array parameters_array])
  4643. [odbc_fetch_array | Fetch a result row as an associative array, returns array]
  4644. odbc_fetch_array(|resource result, [int rownumber])
  4645. [odbc_fetch_into | Fetch one result row into array, returns bool]
  4646. odbc_fetch_into(|resource result_id, [int rownumber], array result_array)
  4647. [odbc_fetch_object | Fetch a result row as an object, returns object]
  4648. odbc_fetch_object(|resource result, [int rownumber])
  4649. [odbc_fetch_row | Fetch a row, returns bool]
  4650. odbc_fetch_row(|resource result_id, [int row_number])
  4651. [odbc_field_len | Get the length (precision) of a field, returns int]
  4652. odbc_field_len(|resource result_id, int field_number)
  4653. [odbc_field_name | Get the columnname, returns string]
  4654. odbc_field_name(|resource result_id, int field_number)
  4655. [odbc_field_num | Return column number, returns int]
  4656. odbc_field_num(|resource result_id, string field_name)
  4657. [odbc_field_precision | Synonym for odbc_field_len, returns string]
  4658. odbc_field_precision(|resource result_id, int field_number)
  4659. [odbc_field_scale | Get the scale of a field, returns string]
  4660. odbc_field_scale(|resource result_id, int field_number)
  4661. [odbc_field_type | Datatype of a field, returns string]
  4662. odbc_field_type(|resource result_id, int field_number)
  4663. [odbc_foreignkeys | Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table, returns resource]
  4664. odbc_foreignkeys(|resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)
  4665. [odbc_free_result | Free resources associated with a result, returns bool]
  4666. odbc_free_result(|resource result_id)
  4667. [odbc_gettypeinfo | Returns a result identifier containing information about data types supported by the data source., returns int]
  4668. odbc_gettypeinfo(|resource connection_id, [int data_type])
  4669. [odbc_longreadlen | Handling of LONG columns, returns int]
  4670. odbc_longreadlen(|resource result_id, int length)
  4671. [odbc_next_result | Checks if multiple results are available, returns bool]
  4672. odbc_next_result(|resource result_id)
  4673. [odbc_num_fields | Number of columns in a result, returns int]
  4674. odbc_num_fields(|resource result_id)
  4675. [odbc_num_rows | Number of rows in a result, returns int]
  4676. odbc_num_rows(|resource result_id)
  4677. [odbc_pconnect | Open a persistent database connection, returns resource]
  4678. odbc_pconnect(|string dsn, string user, string password, [int cursor_type])
  4679. [odbc_prepare | Prepares a statement for execution, returns resource]
  4680. odbc_prepare(|resource connection_id, string query_string)
  4681. [odbc_primarykeys | Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table, returns resource]
  4682. odbc_primarykeys(|resource connection_id, string qualifier, string owner, string table)
  4683. [odbc_procedurecolumns | Retrieve information about parameters to procedures, returns resource]
  4684. odbc_procedurecolumns(|resource connection_id, [string qualifier], [string owner], [string proc], [string column])
  4685. [odbc_procedures | Get the list of procedures stored in a specific data source. Returns a result identifier containing the information., returns resource]
  4686. odbc_procedures(|resource connection_id, [string qualifier], [string owner], [string name])
  4687. [odbc_result_all | Print result as HTML table, returns int]
  4688. odbc_result_all(|resource result_id, [string format])
  4689. [odbc_result | Get result data, returns string]
  4690. odbc_result(|resource result_id, mixed field)
  4691. [odbc_rollback | Rollback a transaction, returns int]
  4692. odbc_rollback(|resource connection_id)
  4693. [odbc_setoption | Adjust ODBC settings. Returns FALSE if an error occurs, otherwise TRUE., returns int]
  4694. odbc_setoption(|resource id, int function, int option, int param)
  4695. [odbc_specialcolumns | Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction, returns resource]
  4696. odbc_specialcolumns(|resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)
  4697. [odbc_statistics | Retrieve statistics about a table, returns resource]
  4698. odbc_statistics(|resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy)
  4699. [odbc_tableprivileges | Lists tables and the privileges associated with each table, returns int]
  4700. odbc_tableprivileges(|resource connection_id, [string qualifier], [string owner], [string name])
  4701. [odbc_tables | Get the list of table names stored in a specific data source. Returns a result identifier containing the information., returns int]
  4702. odbc_tables(|resource connection_id, [string qualifier], [string owner], [string name], [string types])
  4703. ; -----------------------------------------------------------------------------
  4704. ; Object Aggregation - Object Aggregation/Composition Functions
  4705. ; -----------------------------------------------------------------------------
  4706. [aggregate_info | returns an associative array of the methods and properties from each class that has been aggregated to the object., returns array]
  4707. aggregate_info(|object object)
  4708. [aggregate_methods_by_list | selective dynamic class methods aggregation to an object, returns void]
  4709. aggregate_methods_by_list(|object object, string class_name, array methods_list, [bool exclude])
  4710. [aggregate_methods_by_regexp | selective class methods aggregation to an object using a regular expression, returns void]
  4711. aggregate_methods_by_regexp(|object object, string class_name, string regexp, [bool exclude])
  4712. [aggregate_methods | dynamic class and object aggregation of methods, returns void]
  4713. aggregate_methods(|object object, string class_name)
  4714. [aggregate_properties_by_list | selective dynamic class properties aggregation to an object, returns void]
  4715. aggregate_properties_by_list(|object object, string class_name, array properties_list, [bool exclude])
  4716. [aggregate_properties_by_regexp | selective class properties aggregation to an object using a regular expression, returns void]
  4717. aggregate_properties_by_regexp(|object object, string class_name, string regexp, [bool exclude])
  4718. [aggregate_properties | dynamic aggregation of class properties to an object, returns void]
  4719. aggregate_properties(|object object, string class_name)
  4720. [aggregate | dynamic class and object aggregation of methods and properties, returns void]
  4721. aggregate(|object object, string class_name)
  4722. [aggregation_info | Alias for aggregate_info]
  4723. [deaggregate | Removes the aggregated methods and properties from an object, returns void]
  4724. deaggregate(|object object, [string class_name])
  4725. ; -----------------------------------------------------------------------------
  4726. ; OCI8 - Oracle 8 functions
  4727. ; -----------------------------------------------------------------------------
  4728. [ocibindbyname | Bind a PHP variable to an Oracle Placeholder, returns bool]
  4729. ocibindbyname(|resource stmt, string ph_name, mixed &variable, [int maxlength], [int type])
  4730. [ocicancel | Cancel reading from cursor, returns bool]
  4731. ocicancel(|resource stmt)
  4732. [ocicloselob | Closes lob descriptor, returns bool]
  4733. ocicloselob()|
  4734. [ocicollappend | Append an object to the collection, returns bool]
  4735. ocicollappend(|string value)
  4736. [ocicollassign | Assign a collection from another existing collection, returns bool]
  4737. ocicollassign(|object from)
  4738. [ocicollassignelem | Assign element val to collection at index ndx, returns bool]
  4739. ocicollassignelem(|int ndx, string val)
  4740. [ocicollgetelem | Retrieve the value at collection index ndx, returns string]
  4741. ocicollgetelem(|int ndx)
  4742. [ocicollmax | Return the max value of a collection. For a varray this is the maximum length of the array, returns int]
  4743. ocicollmax()|
  4744. [ocicollsize | Return the size of a collection, returns int]
  4745. ocicollsize()|
  4746. [ocicolltrim | Trim num elements from the end of a collection, returns bool]
  4747. ocicolltrim(|int num)
  4748. [ocicolumnisnull | Test whether a result column is NULL, returns bool]
  4749. ocicolumnisnull(|resource stmt, mixed col)
  4750. [ocicolumnname | Returns the name of a column, returns string]
  4751. ocicolumnname(|resource stmt, int col)
  4752. [ocicolumnprecision | Tell the precision of a column, returns int]
  4753. ocicolumnprecision(|resource stmt, int col)
  4754. [ocicolumnscale | Tell the scale of a column, returns int]
  4755. ocicolumnscale(|resource stmt, int col)
  4756. [ocicolumnsize | Return result column size, returns int]
  4757. ocicolumnsize(|resource stmt, mixed column)
  4758. [ocicolumntype | Returns the data type of a column, returns mixed]
  4759. ocicolumntype(|resource stmt, int col)
  4760. [ocicolumntyperaw | Tell the raw oracle data type of a column, returns mixed]
  4761. ocicolumntyperaw(|resource stmt, int col)
  4762. [ocicommit | Commits outstanding transactions, returns bool]
  4763. ocicommit(|resource connection)
  4764. [ocidefinebyname | Use a PHP variable for the define-step during a SELECT, returns bool]
  4765. ocidefinebyname(|resource stmt, string column_name, mixed &variable, [int type])
  4766. [ocierror | Return the last error of stmt|conn|global, returns array]
  4767. ocierror(|[resource stmt|conn|global])
  4768. [ociexecute | Execute a statement, returns bool]
  4769. ociexecute(|resource stmt, [int mode])
  4770. [ocifetch | Fetches the next row into result-buffer, returns bool]
  4771. ocifetch(|resource stmt)
  4772. [ocifetchinto | Fetches the next row into an array, returns int]
  4773. ocifetchinto(|resource stmt, array &result, [int mode])
  4774. [ocifetchstatement | Fetch all rows of result data into an array, returns int]
  4775. ocifetchstatement(|resource stmt, array &output, [int skip], [int maxrows], [int flags])
  4776. [ocifreecollection | Deletes collection object, returns bool]
  4777. ocifreecollection()|
  4778. [ocifreecursor | Free all resources associated with a cursor, returns bool]
  4779. ocifreecursor(|resource stmt)
  4780. [ocifreedesc | Deletes a large object descriptor, returns bool]
  4781. ocifreedesc()|
  4782. [ocifreestatement | Free all resources associated with a statement, returns bool]
  4783. ocifreestatement(|resource stmt)
  4784. [ociinternaldebug | Enables or disables internal debug output, returns void]
  4785. ociinternaldebug(|int onoff)
  4786. [ociloadlob | Loads a large object, returns string]
  4787. ociloadlob()|
  4788. [ocilogoff | Disconnects from Oracle server, returns bool]
  4789. ocilogoff(|resource connection)
  4790. [ocilogon | Establishes a connection to Oracle, returns resource]
  4791. ocilogon(|string username, string password, [string db])
  4792. [ocinewcollection | Initialize a new collection, returns object]
  4793. ocinewcollection(|resource connection, string tdo, [string schema])
  4794. [ocinewcursor | Return a new cursor (Statement-Handle), returns resource]
  4795. ocinewcursor(|resource conn)
  4796. [ocinewdescriptor | Initialize a new empty LOB or FILE descriptor, returns object]
  4797. ocinewdescriptor(|resource connection, [int type])
  4798. [ocinlogon | Establishes a new connection to Oracle, returns resource]
  4799. ocinlogon(|string username, string password, [string db])
  4800. [ocinumcols | Return the number of result columns in a statement, returns int]
  4801. ocinumcols(|resource stmt)
  4802. [ociparse | Parse a query and return an Oracle statement, returns resource]
  4803. ociparse(|resource conn, string query)
  4804. [ociplogon | Connect to an Oracle database using a persistent connection, returns resource]
  4805. ociplogon(|string username, string password, [string db])
  4806. [ociresult | Returns column value for fetched row, returns mixed]
  4807. ociresult(|resource statement, mixed col)
  4808. [ocirollback | Rolls back outstanding transactions, returns bool]
  4809. ocirollback(|resource connection)
  4810. [ocirowcount | Gets the number of affected rows, returns int]
  4811. ocirowcount(|resource stmt)
  4812. [ocisavelob | Saves a large object, returns bool]
  4813. ocisavelob()|
  4814. [ocisavelobfile | Saves a large object file, returns bool]
  4815. ocisavelobfile()|
  4816. [ociserverversion | Return a string containing server version information, returns string]
  4817. ociserverversion(|resource conn)
  4818. [ocisetprefetch | Sets number of rows to be prefetched, returns bool]
  4819. ocisetprefetch(|resource stmt, int rows)
  4820. [ocistatementtype | Return the type of an OCI statement, returns string]
  4821. ocistatementtype(|resource stmt)
  4822. [ociwritelobtofile | Saves a large object file, returns bool]
  4823. ociwritelobtofile(|[string filename], [int start], [int length])
  4824. [ociwritetemporarylob | Writes temporary blob, returns bool]
  4825. ociwritetemporarylob(|string var, [int lob_type])
  4826. ; -----------------------------------------------------------------------------
  4827. ; OpenSSL - OpenSSL functions
  4828. ; -----------------------------------------------------------------------------
  4829. [openssl_csr_export_to_file | Exports a CSR to a file, returns bool]
  4830. openssl_csr_export_to_file(|resource csr, string outfilename, [bool notext])
  4831. [openssl_csr_export | Exports a CSR as a string, returns bool]
  4832. openssl_csr_export(|resource csr, string &out, [bool notext])
  4833. [openssl_csr_new | Generates a CSR, returns bool]
  4834. openssl_csr_new(|array dn, resource privkey, [array configargs], [array extraattribs])
  4835. [openssl_csr_sign | Sign a CSR with another certificate (or itself) and generate a certificate, returns resource]
  4836. openssl_csr_sign(|mixed csr, mixed cacert, mixed priv_key, int days)
  4837. [openssl_error_string | Return openSSL error message, returns mixed]
  4838. openssl_error_string()|
  4839. [openssl_free_key | Free key resource, returns void]
  4840. openssl_free_key(|resource key_identifier)
  4841. [openssl_get_privatekey | Get a private key, returns resource]
  4842. openssl_get_privatekey(|mixed key, [string passphrase])
  4843. [openssl_get_publickey | Extract public key from certificate and prepare it for use, returns resource]
  4844. openssl_get_publickey(|mixed certificate)
  4845. [openssl_open | Open sealed data, returns bool]
  4846. openssl_open(|string sealed_data, string open_data, string env_key, mixed priv_key_id)
  4847. [openssl_pkcs7_decrypt | Decrypts an S/MIME encrypted message, returns bool]
  4848. openssl_pkcs7_decrypt(|string infilename, string outfilename, mixed recipcert, [mixed recipkey])
  4849. [openssl_pkcs7_encrypt | Encrypt an S/MIME message, returns bool]
  4850. openssl_pkcs7_encrypt(|string infile, string outfile, mixed recipcerts, array headers, [int flags])
  4851. [openssl_pkcs7_sign | sign an S/MIME message, returns bool]
  4852. openssl_pkcs7_sign(|string infilename, string outfilename, mixed signcert, mixed privkey, array headers, [int flags], [string extracerts])
  4853. [openssl_pkcs7_verify | Verifies the signature of an S/MIME signed message, returns bool]
  4854. openssl_pkcs7_verify(|string filename, int flags, [string outfilename], [array cainfo], [string extracerts])
  4855. [openssl_pkey_export_to_file | Gets an exportable representation of a key into a file, returns bool]
  4856. openssl_pkey_export_to_file(|mixed key, string outfilename, [string passphrase], [array configargs])
  4857. [openssl_pkey_export | Gets an exportable representation of a key into a string, returns bool]
  4858. openssl_pkey_export(|mixed key, string &out, [string passphrase], [array configargs])
  4859. [openssl_pkey_get_private | Get a private key, returns resource]
  4860. openssl_get_privatekey(|mixed key, [string passphrase])
  4861. [openssl_pkey_get_public | Extract public key from certificate and prepare it for use, returns resource]
  4862. openssl_pkey_get_public(|mixed certificate)
  4863. [openssl_pkey_new | Generates a new private key, returns resource]
  4864. openssl_pkey_new(|[array configargs])
  4865. [openssl_private_decrypt | Decrypts data with private key, returns bool]
  4866. openssl_private_decrypt(|string data, string &decrypted, mixed key, [int padding])
  4867. [openssl_private_encrypt | Encrypts data with private key, returns bool]
  4868. openssl_private_encrypt(|string data, string crypted, mixed key, [int padding])
  4869. [openssl_public_decrypt | Decrypts data with public key, returns bool]
  4870. openssl_public_decrypt(|string data, string crypted, resource key, [int padding])
  4871. [openssl_public_encrypt | Encrypts data with public key, returns bool]
  4872. openssl_public_encrypt(|string data, string crypted, mixed key, [int padding])
  4873. [openssl_seal | Seal (encrypt) data, returns int]
  4874. openssl_seal(|string data, string sealed_data, array env_keys, array pub_key_ids)
  4875. [openssl_sign | Generate signature, returns bool]
  4876. openssl_sign(|string data, string signature, mixed priv_key_id)
  4877. [openssl_verify | Verify signature, returns int]
  4878. openssl_verify(|string data, string signature, mixed pub_key_id)
  4879. [openssl_x509_check_private_key | Checks if a private key corresponds to a certificate, returns bool]
  4880. openssl_x509_check_private_key(|mixed cert, mixed key)
  4881. [openssl_x509_checkpurpose | Verifies if a certificate can be used for a particular purpose, returns bool]
  4882. openssl_x509_checkpurpose(|mixed x509cert, int purpose, array cainfo, [string untrustedfile])
  4883. [openssl_x509_export_to_file | Exports a certificate to file, returns bool]
  4884. openssl_x509_export_to_file(|mixed x509, string outfilename, [bool notext])
  4885. [openssl_x509_export | Exports a certificate as a string, returns bool]
  4886. openssl_x509_export(|mixed x509, string &output, [bool notext])
  4887. [openssl_x509_free | Free certificate resource, returns void]
  4888. openssl_x509_free(|resource x509cert)
  4889. [openssl_x509_parse | Parse an X509 certificate and return the information as an array, returns array]
  4890. openssl_x509_parse(|mixed x509cert, [bool shortnames])
  4891. [openssl_x509_read | Parse an X.509 certificate and return a resource identifier for it, returns resource]
  4892. openssl_x509_read(|mixed x509certdata)
  4893. ; -----------------------------------------------------------------------------
  4894. ; Oracle - Oracle functions
  4895. ; -----------------------------------------------------------------------------
  4896. [ora_bind | Binds a PHP variable to an Oracle parameter, returns bool]
  4897. ora_bind(|resource cursor, string PHP_variable_name, string SQL_parameter_name, int length, [int type])
  4898. [ora_close | Closes an Oracle cursor, returns bool]
  4899. ora_close(|resource cursor)
  4900. [ora_columnname | Gets the name of an Oracle result column, returns string]
  4901. ora_columnname(|resource cursor, int column)
  4902. [ora_columnsize | Returns the size of an Oracle result column, returns int]
  4903. ora_columnsize(|resource cursor, int column)
  4904. [ora_columntype | Gets the type of an Oracle result column, returns string]
  4905. ora_columntype(|resource cursor, int column)
  4906. [ora_commit | Commit an Oracle transaction, returns bool]
  4907. ora_commit(|resource conn)
  4908. [ora_commitoff | Disable automatic commit, returns bool]
  4909. ora_commitoff(|resource conn)
  4910. [ora_commiton | Enable automatic commit, returns bool]
  4911. ora_commiton(|resource conn)
  4912. [ora_do | Parse, Exec, Fetch, returns resource]
  4913. ora_do(|resource conn, string query)
  4914. [ora_error | Gets an Oracle error message, returns string]
  4915. ora_error(|resource cursor_or_connection)
  4916. [ora_errorcode | Gets an Oracle error code, returns int]
  4917. ora_errorcode(|resource cursor_or_connection)
  4918. [ora_exec | Execute a parsed statement on an Oracle cursor, returns bool]
  4919. ora_exec(|resource cursor)
  4920. [ora_fetch_into | Fetch a row into the specified result array, returns int]
  4921. ora_fetch_into(|resource cursor, array result, [int flags])
  4922. [ora_fetch | Fetch a row of data from a cursor, returns bool]
  4923. ora_fetch(|resource cursor)
  4924. [ora_getcolumn | Get data from a fetched column, returns mixed]
  4925. ora_getcolumn(|resource cursor, int column)
  4926. [ora_logoff | Close an Oracle connection, returns bool]
  4927. ora_logoff(|resource connection)
  4928. [ora_logon | Open an Oracle connection, returns resource]
  4929. ora_logon(|string user, string password)
  4930. [ora_numcols | Returns the number of columns, returns int]
  4931. ora_numcols(|resource cursor)
  4932. [ora_numrows | Returns the number of rows, returns int]
  4933. ora_numrows(|resource cursor)
  4934. [ora_open | Opens an Oracle cursor, returns resource]
  4935. ora_open(|resource connection)
  4936. [ora_parse | Parse an SQL statement with Oracle, returns bool]
  4937. ora_parse(|resource cursor, string sql_statement, int defer)
  4938. [ora_plogon | Open a persistent Oracle connection, returns resource]
  4939. ora_plogon(|string user, string password)
  4940. [ora_rollback | Rolls back a transaction, returns bool]
  4941. ora_rollback(|resource connection)
  4942. ; -----------------------------------------------------------------------------
  4943. ; OvrimosSQL - Ovrimos SQL functions
  4944. ; -----------------------------------------------------------------------------
  4945. [ovrimos_close | Closes the connection to ovrimos, returns void]
  4946. ovrimos_close(|int connection)
  4947. [ovrimos_commit | Commits the transaction, returns bool]
  4948. ovrimos_commit(|int connection_id)
  4949. [ovrimos_connect | Connect to the specified database, returns int]
  4950. ovrimos_connect(|string host, string db, string user, string password)
  4951. [ovrimos_cursor | Returns the name of the cursor, returns string]
  4952. ovrimos_cursor(|int result_id)
  4953. [ovrimos_exec | Executes an SQL statement, returns int]
  4954. ovrimos_exec(|int connection_id, string query)
  4955. [ovrimos_execute | Executes a prepared SQL statement, returns bool]
  4956. ovrimos_execute(|int result_id, [array parameters_array])
  4957. [ovrimos_fetch_into | Fetches a row from the result set, returns bool]
  4958. ovrimos_fetch_into(|int result_id, array result_array, [string how], [int rownumber])
  4959. [ovrimos_fetch_row | Fetches a row from the result set, returns bool]
  4960. ovrimos_fetch_row(|int result_id, [int how], [int row_number])
  4961. [ovrimos_field_len | Returns the length of the output column, returns int]
  4962. ovrimos_field_len(|int result_id, int field_number)
  4963. [ovrimos_field_name | Returns the output column name, returns string]
  4964. ovrimos_field_name(|int result_id, int field_number)
  4965. [ovrimos_field_num | Returns the (1-based) index of the output column, returns int]
  4966. ovrimos_field_num(|int result_id, string field_name)
  4967. [ovrimos_field_type | Returns the (numeric) type of the output column, returns int]
  4968. ovrimos_field_type(|int result_id, int field_number)
  4969. [ovrimos_free_result | Frees the specified result_id, returns bool]
  4970. ovrimos_free_result(|int result_id)
  4971. [ovrimos_longreadlen | Specifies how many bytes are to be retrieved from long datatypes, returns bool]
  4972. ovrimos_longreadlen(|int result_id, int length)
  4973. [ovrimos_num_fields | Returns the number of columns, returns int]
  4974. ovrimos_num_fields(|int result_id)
  4975. [ovrimos_num_rows | Returns the number of rows affected by update operations, returns int]
  4976. ovrimos_num_rows(|int result_id)
  4977. [ovrimos_prepare | Prepares an SQL statement, returns int]
  4978. ovrimos_prepare(|int connection_id, string query)
  4979. [ovrimos_result_all | Prints the whole result set as an HTML table, returns int]
  4980. ovrimos_result_all(|int result_id, [string format])
  4981. [ovrimos_result | Retrieves the output column, returns string]
  4982. ovrimos_result(|int result_id, mixed field)
  4983. [ovrimos_rollback | Rolls back the transaction, returns bool]
  4984. ovrimos_rollback(|int connection_id)
  4985. ; -----------------------------------------------------------------------------
  4986. ; Output Control - Output Control Functions
  4987. ; -----------------------------------------------------------------------------
  4988. [flush | Flush the output buffer, returns void]
  4989. flush()|
  4990. [ob_clean | Clean (erase) the output buffer, returns void]
  4991. ob_clean()|
  4992. [ob_end_clean | Clean (erase) the output buffer and turn off output buffering, returns bool]
  4993. ob_end_clean()|
  4994. [ob_end_flush | Flush (send) the output buffer and turn off output buffering, returns bool]
  4995. ob_end_flush()|
  4996. [ob_flush | Flush (send) the output buffer, returns void]
  4997. ob_flush()|
  4998. [ob_get_clean | Get current buffer contents and delete current output buffer, returns string]
  4999. ob_get_clean()|
  5000. [ob_get_contents | Return the contents of the output buffer, returns string]
  5001. ob_get_contents()|
  5002. [ob_get_length | Return the length of the output buffer, returns int]
  5003. ob_get_length()|
  5004. [ob_get_level | Return the nesting level of the output buffering mechanism, returns int]
  5005. ob_get_level()|
  5006. [ob_get_status | Get status of output buffers, returns array]
  5007. ob_get_status(|[bool full_status])
  5008. [ob_gzhandler | ob_start callback function to gzip output buffer, returns string]
  5009. ob_gzhandler(|string buffer, [int mode])
  5010. [ob_implicit_flush | Turn implicit flush on/off, returns void]
  5011. ob_implicit_flush(|[int flag])
  5012. [ob_start | Turn on output buffering, returns bool]
  5013. ob_start(|[callback output_callback])
  5014. ; -----------------------------------------------------------------------------
  5015. ; Object overloading - Object property and method call overloading
  5016. ; -----------------------------------------------------------------------------
  5017. [overload | Enable property and method call overloading for a class, returns void]
  5018. overload(|[string class_name])
  5019. ; -----------------------------------------------------------------------------
  5020. ; PDF - PDF functions
  5021. ; -----------------------------------------------------------------------------
  5022. [pdf_add_annotation | Deprecated: Adds annotation]
  5023. [pdf_add_bookmark | Adds bookmark for current page, returns int]
  5024. pdf_add_bookmark(|resource pdfdoc, string text, [int parent], [int open])
  5025. [pdf_add_launchlink | Add a launch annotation for current page, returns bool]
  5026. pdf_add_launchlink(|resource pdfdoc, float llx, float lly, float urx, float ury, string filename)
  5027. [pdf_add_locallink | Add a link annotation for current page, returns bool]
  5028. pdf_add_locallink(|resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest)
  5029. [pdf_add_note | Sets annotation for current page, returns bool]
  5030. pdf_add_note(|resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open)
  5031. [pdf_add_outline | Deprecated: Adds bookmark for current page]
  5032. [pdf_add_pdflink | Adds file link annotation for current page, returns bool]
  5033. pdf_add_pdflink(|resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest)
  5034. [pdf_add_thumbnail | Adds thumbnail for current page, returns bool]
  5035. pdf_add_thumbnail(|resource pdfdoc, int image)
  5036. [pdf_add_weblink | Adds weblink for current page, returns bool]
  5037. pdf_add_weblink(|resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url)
  5038. [pdf_arc | Draws an arc (counterclockwise), returns bool]
  5039. pdf_arc(|resource pdfdoc, float x, float y, float r, float alpha, float beta)
  5040. [pdf_arcn | Draws an arc (clockwise), returns bool]
  5041. pdf_arcn(|resource pdfdoc, float x, float y, float r, float alpha, float beta)
  5042. [pdf_attach_file | Adds a file attachment for current page, returns bool]
  5043. pdf_attach_file(|resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon)
  5044. [pdf_begin_page | Starts new page, returns bool]
  5045. pdf_begin_page(|resource pdfdoc, float width, float height)
  5046. [pdf_begin_pattern | Starts new pattern, returns int]
  5047. pdf_begin_pattern(|resource pdfdoc, float width, float height, float xstep, float ystep, int painttype)
  5048. [pdf_begin_template | Starts new template, returns int]
  5049. pdf_begin_template(|resource pdfdoc, float width, float height)
  5050. [pdf_circle | Draws a circle, returns bool]
  5051. pdf_circle(|resource pdfdoc, float x, float y, float r)
  5052. [pdf_clip | Clips to current path, returns bool]
  5053. pdf_clip(|resource pdfdoc)
  5054. [pdf_close_image | Closes an image, returns void]
  5055. pdf_close_image(|resource pdfdoc, int image)
  5056. [pdf_close_pdi_page | Close the page handle, returns bool]
  5057. pdf_close_pdi_page(|resource pdfdoc, int pagehandle)
  5058. [pdf_close_pdi | Close the input PDF document, returns bool]
  5059. pdf_close_pdi(|resource pdfdoc, int dochandle)
  5060. [pdf_close | Closes a pdf resource, returns bool]
  5061. pdf_close(|resource pdfdoc)
  5062. [pdf_closepath_fill_stroke | Closes, fills and strokes current path, returns bool]
  5063. pdf_closepath_fill_stroke(|resource pdfdoc)
  5064. [pdf_closepath_stroke | Closes path and draws line along path, returns bool]
  5065. pdf_closepath_stroke(|resource pdfdoc)
  5066. [pdf_closepath | Closes path, returns bool]
  5067. pdf_closepath(|resource pdfdoc)
  5068. [pdf_concat | Concatenate a matrix to the CTM, returns bool]
  5069. pdf_concat(|resource pdfdoc, float a, float b, float c, float d, float e, float f)
  5070. [pdf_continue_text | Outputs text in next line, returns bool]
  5071. pdf_continue_text(|resource pdfdoc, string text)
  5072. [pdf_curveto | Draws a curve, returns bool]
  5073. pdf_curveto(|resource pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3)
  5074. [pdf_delete | Deletes a PDF object, returns bool]
  5075. pdf_delete(|resource pdfdoc)
  5076. [pdf_end_page | Ends a page, returns bool]
  5077. pdf_end_page(|resource pdfdoc)
  5078. [pdf_end_pattern | Finish pattern, returns bool]
  5079. pdf_end_pattern(|resource pdfdoc)
  5080. [pdf_end_template | Finish template, returns bool]
  5081. pdf_end_template(|resource pdfdoc)
  5082. [pdf_endpath | Deprecated: Ends current path]
  5083. [pdf_fill_stroke | Fills and strokes current path, returns bool]
  5084. pdf_fill_stroke(|resource pdfdoc)
  5085. [pdf_fill | Fills current path, returns bool]
  5086. pdf_fill(|resource pdfdoc)
  5087. [pdf_findfont | Prepare font for later use with pdf_setfont., returns int]
  5088. pdf_findfont(|resource pdfdoc, string fontname, string encoding, [int embed])
  5089. [pdf_get_buffer | Fetch the buffer containig the generated PDF data., returns string]
  5090. pdf_get_buffer(|resource pdfdoc)
  5091. [pdf_get_font | Deprecated: font handling]
  5092. [pdf_get_fontname | Deprecated: font handling]
  5093. [pdf_get_fontsize | Deprecated: font handling]
  5094. [pdf_get_image_height | Deprecated: returns height of an image]
  5095. [pdf_get_image_width | Deprecated: Returns width of an image]
  5096. [pdf_get_majorversion | Returns the major version number of the PDFlib, returns int]
  5097. pdf_get_majorversion()|
  5098. [pdf_get_minorversion | Returns the minor version number of the PDFlib, returns int]
  5099. pdf_get_minorversion()|
  5100. [pdf_get_parameter | Gets certain parameters, returns string]
  5101. pdf_get_parameter(|resource pdfdoc, string key, [float modifier])
  5102. [pdf_get_pdi_parameter | Get some PDI string parameters, returns string]
  5103. pdf_get_pdi_parameter(|resource pdfdoc, string key, int document, int page, int index)
  5104. [pdf_get_pdi_value | Gets some PDI numerical parameters, returns string]
  5105. pdf_get_pdi_value(|resource pdfdoc, string key, int doc, int page, int index)
  5106. [pdf_get_value | Gets certain numerical value, returns float]
  5107. pdf_get_value(|resource pdfdoc, string key, [float modifier])
  5108. [pdf_initgraphics | Resets graphic state, returns bool]
  5109. pdf_initgraphics(|resource pdfdoc)
  5110. [pdf_lineto | Draws a line, returns bool]
  5111. pdf_lineto(|resource pdfdoc, float x, float y)
  5112. [pdf_makespotcolor | Makes a spotcolor, returns bool]
  5113. pdf_makespotcolor(|resource pdfdoc, string spotname)
  5114. [pdf_moveto | Sets current point, returns bool]
  5115. pdf_moveto(|resource pdfdoc, float x, float y)
  5116. [pdf_new | Creates a new pdf resource, returns resource]
  5117. pdf_new(| )
  5118. [pdf_open_CCITT | Opens a new image file with raw CCITT data, returns int]
  5119. pdf_open_CCITT(|resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1)
  5120. [pdf_open_file | Opens a new pdf object, returns bool]
  5121. pdf_open_file(|resource pdfdoc, [string filename])
  5122. [pdf_open_gif | Deprecated: Opens a GIF image]
  5123. [pdf_open_image_file | Reads an image from a file, returns int]
  5124. pdf_open_image_file(|resource pdfdoc, string imagetype, string filename, [string stringparam], [string intparam])
  5125. [pdf_open_image | Versatile function for images, returns int]
  5126. pdf_open_image(|resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params)
  5127. [pdf_open_jpeg | Deprecated: Opens a JPEG image]
  5128. [pdf_open_memory_image | Opens an image created with PHP's image functions, returns int]
  5129. pdf_open_memory_image(|resource pdfdoc, resource image)
  5130. [pdf_open_pdi_page | Prepare a page, returns int]
  5131. pdf_open_pdi_page(|resource pdfdoc, int dochandle, int pagenumber, string pagelabel)
  5132. [pdf_open_pdi | Opens a PDF file, returns int]
  5133. pdf_open_pdi(|resource pdfdoc, string filename, string stringparam, int intparam)
  5134. [pdf_open_png | Deprecated: Opens a PNG image]
  5135. [pdf_open_tiff | Deprecated: Opens a TIFF image]
  5136. [pdf_open | Deprecated: Open a new pdf object]
  5137. [pdf_place_image | Places an image on the page, returns bool]
  5138. pdf_place_image(|resource pdfdoc, int image, float x, float y, float scale)
  5139. [pdf_place_pdi_page | Places an image on the page, returns bool]
  5140. pdf_place_pdi_page(|resource pdfdoc, int page, float x, float y, float sx, float sy)
  5141. [pdf_rect | Draws a rectangle, returns bool]
  5142. pdf_rect(|resource pdfdoc, float x, float y, float width, float height)
  5143. [pdf_restore | Restores formerly saved environment, returns bool]
  5144. pdf_restore(|resource pdfdoc)
  5145. [pdf_rotate | Sets rotation, returns bool]
  5146. pdf_rotate(|resource pdfdoc, float phi)
  5147. [pdf_save | Saves the current environment, returns bool]
  5148. pdf_save(|resource pdfdoc)
  5149. [pdf_scale | Sets scaling, returns bool]
  5150. pdf_scale(|resource pdfdoc, float x-scale, float y-scale)
  5151. [pdf_set_border_color | Sets color of border around links and annotations, returns bool]
  5152. pdf_set_border_color(|resource pdfdoc, float red, float green, float blue)
  5153. [pdf_set_border_dash | Sets dash style of border around links and annotations, returns bool]
  5154. pdf_set_border_dash(|resource pdfdoc, float black, float white)
  5155. [pdf_set_border_style | Sets style of border around links and annotations, returns bool]
  5156. pdf_set_border_style(|resource pdfdoc, string style, float width)
  5157. [pdf_set_char_spacing | Deprecated: Sets character spacing]
  5158. [pdf_set_duration | Deprecated: Sets duration between pages]
  5159. [pdf_set_font | Deprecated: Selects a font face and size]
  5160. [pdf_set_horiz_scaling | Sets horizontal scaling of text]
  5161. [pdf_set_info_author | Deprecated: Fills the author field of the document]
  5162. [pdf_set_info_creator | Deprecated: Fills the creator field of the document]
  5163. [pdf_set_info_keywords | Deprecated: Fills the keywords field of the document]
  5164. [pdf_set_info_subject | Deprecated: Fills the subject field of the document]
  5165. [pdf_set_info_title | Deprecated: Fills the title field of the document]
  5166. [pdf_set_info | Fills a field of the document information, returns bool]
  5167. pdf_set_info(|resource pdfdoc, string key, string value)
  5168. [pdf_set_leading | Deprecated: Sets distance between text lines]
  5169. [pdf_set_parameter | Sets certain parameters, returns bool]
  5170. pdf_set_parameter(|resource pdfdoc, string key, string value)
  5171. [pdf_set_text_matrix | Deprecated: Sets the text matrix]
  5172. [pdf_set_text_pos | Sets text position, returns bool]
  5173. pdf_set_text_pos(|resource pdfdoc, float x, float y)
  5174. [pdf_set_text_rendering | Deprecated: Determines how text is rendered]
  5175. [pdf_set_text_rise | Deprecated: Sets the text rise]
  5176. [pdf_set_value | Sets certain numerical value, returns bool]
  5177. pdf_set_value(|resource pdfdoc, string key, float value)
  5178. [pdf_set_word_spacing | Deprecated: Sets spacing between words]
  5179. [pdf_setcolor | Sets fill and stroke color, returns bool]
  5180. pdf_setcolor(|resource pdfdoc, string type, string colorspace, float c1, [float c2], [float c3], [float c4])
  5181. [pdf_setdash | Sets dash pattern, returns bool]
  5182. pdf_setdash(|resource pdfdoc, float b, float w)
  5183. [pdf_setflat | Sets flatness, returns bool]
  5184. pdf_setflat(|resource pdfdoc, float flatness)
  5185. [pdf_setfont | Set the current font, returns bool]
  5186. pdf_setfont(|resource pdfdoc, int font, float size)
  5187. [pdf_setgray_fill | Sets filling color to gray value, returns bool]
  5188. pdf_setgray_fill(|resource pdfdoc, float gray)
  5189. [pdf_setgray_stroke | Sets drawing color to gray value, returns bool]
  5190. pdf_setgray_stroke(|resource pdfdoc, float gray)
  5191. [pdf_setgray | Sets drawing and filling color to gray value, returns bool]
  5192. pdf_setgray(|resource pdfdoc, float gray)
  5193. [pdf_setlinecap | Sets linecap parameter, returns void]
  5194. pdf_setlinecap(|resource pdfdoc, int linecap)
  5195. [pdf_setlinejoin | Sets linejoin parameter, returns bool]
  5196. pdf_setlinejoin(|resource pdfdoc, int value)
  5197. [pdf_setlinewidth | Sets line width, returns void]
  5198. pdf_setlinewidth(|resource pdfdoc, float width)
  5199. [pdf_setmatrix | Sets current transformation matrix, returns bool]
  5200. pdf_setmatrix(|resource pdfdoc, float a, float b, float c, float d, float e, float f)
  5201. [pdf_setmiterlimit | Sets miter limit, returns bool]
  5202. pdf_setmiterlimit(|resource pdfdoc, float miter)
  5203. [pdf_setpolydash | Deprecated: Sets complicated dash pattern]
  5204. [pdf_setrgbcolor_fill | Sets filling color to rgb color value, returns bool]
  5205. pdf_setrgbcolor_fill(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5206. [pdf_setrgbcolor_stroke | Sets drawing color to rgb color value, returns bool]
  5207. pdf_setrgbcolor_stroke(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5208. [pdf_setrgbcolor | Sets drawing and filling color to rgb color value, returns bool]
  5209. pdf_setrgbcolor(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5210. [pdf_show_boxed | Output text in a box, returns int]
  5211. pdf_show_boxed(|resource pdfdoc, string text, float left, float top, float width, float height, string mode, [string feature])
  5212. [pdf_show_xy | Output text at given position, returns bool]
  5213. pdf_show_xy(|resource pdfdoc, string text, float x, float y)
  5214. [pdf_show | Output text at current position, returns bool]
  5215. pdf_show(|resource pdfdoc, string text)
  5216. [pdf_skew | Skews the coordinate system, returns bool]
  5217. pdf_skew(|resource pdfdoc, float alpha, float beta)
  5218. [pdf_stringwidth | Returns width of text using current font, returns float]
  5219. pdf_stringwidth(|resource pdfdoc, string text, [int font], [float size])
  5220. [pdf_stroke | Draws line along path, returns bool]
  5221. pdf_stroke(|resource pdfdoc)
  5222. [pdf_translate | Sets origin of coordinate system, returns bool]
  5223. pdf_translate(|resource pdfdoc, float tx, float ty)
  5224. ; -----------------------------------------------------------------------------
  5225. ; Verisign Payflow Pro - Verisign Payflow Pro functions
  5226. ; -----------------------------------------------------------------------------
  5227. [pfpro_cleanup | Shuts down the Payflow Pro library, returns void]
  5228. pfpro_cleanup()|
  5229. [pfpro_init | Initialises the Payflow Pro library, returns void]
  5230. pfpro_init()|
  5231. [pfpro_process_raw | Process a raw transaction with Payflow Pro, returns string]
  5232. pfpro_process_raw(|string parameters, [string address], [int port], [int timeout], [string proxy_address], [int proxy_port], [string proxy_logon], [string proxy_password])
  5233. [pfpro_process | Process a transaction with Payflow Pro, returns array]
  5234. pfpro_process(|array parameters, [string address], [int port], [int timeout], [string proxy_address], [int proxy_port], [string proxy_logon], [string proxy_password])
  5235. [pfpro_version | Returns the version of the Payflow Pro software, returns string]
  5236. pfpro_version()|
  5237. ; -----------------------------------------------------------------------------
  5238. ; PHP Options/Info - PHP Options&Information
  5239. ; -----------------------------------------------------------------------------
  5240. [assert_options | Set/get the various assert flags, returns mixed]
  5241. assert_options(|int what, [mixed value])
  5242. [assert | Checks if assertion is FALSE, returns int]
  5243. assert(|mixed assertion)
  5244. [dl | Loads a PHP extension at runtime, returns int]
  5245. dl(|string library)
  5246. [extension_loaded | Find out whether an extension is loaded, returns bool]
  5247. extension_loaded(|string name)
  5248. [get_cfg_var | Gets the value of a PHP configuration option, returns string]
  5249. get_cfg_var(|string varname)
  5250. [get_current_user | Gets the name of the owner of the current PHP script, returns string]
  5251. get_current_user()|
  5252. [get_defined_constants | Returns an associative array with the names of all the constants and their values, returns array]
  5253. get_defined_constants()|
  5254. [get_extension_funcs | Returns an array with the names of the functions of a module, returns array]
  5255. get_extension_funcs(|string module_name)
  5256. [get_include_path | Gets the current include_path configuration option, returns string]
  5257. get_include_path()|
  5258. [get_included_files | Returns an array with the names of included or required files, returns array]
  5259. get_included_files()|
  5260. [get_loaded_extensions | Returns an array with the names of all modules compiled and loaded, returns array]
  5261. get_loaded_extensions()|
  5262. [get_magic_quotes_gpc | Gets the current active configuration setting of magic quotes gpc, returns int]
  5263. get_magic_quotes_gpc()|
  5264. [get_magic_quotes_runtime | Gets the current active configuration setting of magic_quotes_runtime, returns int]
  5265. get_magic_quotes_runtime()|
  5266. [get_required_files | Alias of get_included_files]
  5267. [getenv | Gets the value of an environment variable, returns string]
  5268. getenv(|string varname)
  5269. [getlastmod | Gets time of last page modification, returns int]
  5270. getlastmod()|
  5271. [getmygid | Get PHP script owner's GID, returns int]
  5272. getmygid()|
  5273. [getmyinode | Gets the inode of the current script, returns int]
  5274. getmyinode()|
  5275. [getmypid | Gets PHP's process ID, returns int]
  5276. getmypid()|
  5277. [getmyuid | Gets PHP script owner's UID, returns int]
  5278. getmyuid()|
  5279. [getopt | Gets options from the command line argument list, returns string]
  5280. getopt(|string options)
  5281. [getrusage | Gets the current resource usages, returns array]
  5282. getrusage(|[int who])
  5283. [ini_alter | Alias of ini_set]
  5284. [ini_get_all | Gets all configuration options, returns array]
  5285. ini_get_all(|[string extension])
  5286. [ini_get | Gets the value of a configuration option, returns string]
  5287. ini_get(|string varname)
  5288. [ini_restore | Restores the value of a configuration option, returns string]
  5289. ini_restore(|string varname)
  5290. [ini_set | Sets the value of a configuration option, returns string]
  5291. ini_set(|string varname, string newvalue)
  5292. [main | Dummy for main]
  5293. [memory_get_usage | Returns the amount of memory allocated to PHP, returns int]
  5294. memory_get_usage()|
  5295. [php_ini_scanned_files | Return a list of .ini files parsed from the additional ini dir, returns string]
  5296. php_ini_scanned_files()|
  5297. [php_logo_guid | Gets the logo guid, returns string]
  5298. php_logo_guid()|
  5299. [php_sapi_name | Returns the type of interface between web server and PHP, returns string]
  5300. php_sapi_name()|
  5301. [php_uname | Returns information about the operating system PHP was built on, returns string]
  5302. php_uname()|
  5303. [phpcredits | Prints out the credits for PHP, returns void]
  5304. phpcredits(|[int flag])
  5305. [phpinfo | Outputs lots of PHP information, returns int]
  5306. phpinfo(|[int what])
  5307. [phpversion | Gets the current PHP version, returns string]
  5308. phpversion()|
  5309. [putenv | Sets the value of an environment variable, returns void]
  5310. putenv(|string setting)
  5311. [restore_include_path | Restores the value of the include_path configuration option, returns void]
  5312. restore_include_path()|
  5313. [set_include_path | Sets the include_path configuration option, returns string]
  5314. set_include_path(|string new_include_path)
  5315. [set_magic_quotes_runtime | Sets the current active configuration setting of magic_quotes_runtime, returns bool]
  5316. set_magic_quotes_runtime(|int new_setting)
  5317. [set_time_limit | Limits the maximum execution time, returns void]
  5318. set_time_limit(|int seconds)
  5319. [version_compare | Compares two "PHP-standardized" version number strings, returns int]
  5320. version_compare(|string version1, string version2, [string operator])
  5321. [zend_logo_guid | Gets the zend guid, returns string]
  5322. zend_logo_guid()|
  5323. [zend_version | Gets the version of the current Zend engine, returns string]
  5324. zend_version()|
  5325. ; -----------------------------------------------------------------------------
  5326. ; POSIX - POSIX functions
  5327. ; -----------------------------------------------------------------------------
  5328. [posix_ctermid | Get path name of controlling terminal, returns string]
  5329. posix_ctermid()|
  5330. [posix_get_last_error | Retrieve the error number set by the last posix function that failed., returns int]
  5331. posix_get_last_error()|
  5332. [posix_getcwd | Pathname of current directory, returns string]
  5333. posix_getcwd()|
  5334. [posix_getegid | Return the effective group ID of the current process, returns int]
  5335. posix_getegid()|
  5336. [posix_geteuid | Return the effective user ID of the current process, returns int]
  5337. posix_geteuid()|
  5338. [posix_getgid | Return the real group ID of the current process, returns int]
  5339. posix_getgid()|
  5340. [posix_getgrgid | Return info about a group by group id, returns array]
  5341. posix_getgrgid(|int gid)
  5342. [posix_getgrnam | Return info about a group by name, returns array]
  5343. posix_getgrnam(|string name)
  5344. [posix_getgroups | Return the group set of the current process, returns array]
  5345. posix_getgroups()|
  5346. [posix_getlogin | Return login name, returns string]
  5347. posix_getlogin()|
  5348. [posix_getpgid | Get process group id for job control, returns int]
  5349. posix_getpgid(|int pid)
  5350. [posix_getpgrp | Return the current process group identifier, returns int]
  5351. posix_getpgrp()|
  5352. [posix_getpid | Return the current process identifier, returns int]
  5353. posix_getpid()|
  5354. [posix_getppid | Return the parent process identifier, returns int]
  5355. posix_getppid()|
  5356. [posix_getpwnam | Return info about a user by username, returns array]
  5357. posix_getpwnam(|string username)
  5358. [posix_getpwuid | Return info about a user by user id, returns array]
  5359. posix_getpwuid(|int uid)
  5360. [posix_getrlimit | Return info about system resource limits, returns array]
  5361. posix_getrlimit()|
  5362. [posix_getsid | Get the current sid of the process, returns int]
  5363. posix_getsid(|int pid)
  5364. [posix_getuid | Return the real user ID of the current process, returns int]
  5365. posix_getuid()|
  5366. [posix_isatty | Determine if a file descriptor is an interactive terminal, returns bool]
  5367. posix_isatty(|int fd)
  5368. [posix_kill | Send a signal to a process, returns bool]
  5369. posix_kill(|int pid, int sig)
  5370. [posix_mkfifo | Create a fifo special file (a named pipe), returns bool]
  5371. posix_mkfifo(|string pathname, int mode)
  5372. [posix_setegid | Set the effective GID of the current process, returns bool]
  5373. posix_setegid(|int gid)
  5374. [posix_seteuid | Set the effective UID of the current process, returns bool]
  5375. posix_seteuid(|int uid)
  5376. [posix_setgid | Set the GID of the current process, returns bool]
  5377. posix_setgid(|int gid)
  5378. [posix_setpgid | set process group id for job control, returns int]
  5379. posix_setpgid(|int pid, int pgid)
  5380. [posix_setsid | Make the current process a session leader, returns int]
  5381. posix_setsid()|
  5382. [posix_setuid | Set the UID of the current process, returns bool]
  5383. posix_setuid(|int uid)
  5384. [posix_strerror | Retrieve the system error message associated with the given errno., returns string]
  5385. posix_strerror(|int errno)
  5386. [posix_times | Get process times, returns array]
  5387. posix_times()|
  5388. [posix_ttyname | Determine terminal device name, returns string]
  5389. posix_ttyname(|int fd)
  5390. [posix_uname | Get system name, returns array]
  5391. posix_uname()|
  5392. ; -----------------------------------------------------------------------------
  5393. ; PostgreSQL - PostgreSQL functions
  5394. ; -----------------------------------------------------------------------------
  5395. [pg_affected_rows | Returns number of affected records (tuples), returns int]
  5396. pg_affected_rows(|resource result)
  5397. [pg_cancel_query | Cancel asynchronous query, returns bool]
  5398. pg_cancel_query(|resource connection)
  5399. [pg_client_encoding | Gets the client encoding, returns string]
  5400. pg_client_encoding(|[resource connection])
  5401. [pg_close | Closes a PostgreSQL connection, returns bool]
  5402. pg_close(|resource connection)
  5403. [pg_connect | Open a PostgreSQL connection, returns resource]
  5404. pg_connect(|string connection_string)
  5405. [pg_connection_busy | Get connection is busy or not, returns bool]
  5406. pg_connection_busy(|resource connection)
  5407. [pg_connection_reset | Reset connection (reconnect), returns bool]
  5408. pg_connection_reset(|resource connection)
  5409. [pg_connection_status | Get connection status, returns int]
  5410. pg_connection_status(|resource connection)
  5411. [pg_convert | Convert associative array value into suitable for SQL statement., returns array]
  5412. pg_convert(|resource connection, string table_name, array assoc_array, [int options])
  5413. [pg_copy_from | Insert records into a table from an array, returns bool]
  5414. pg_copy_from(|resource connection, string table_name, array rows, [string delimiter], [string null_as])
  5415. [pg_copy_to | Copy a table to an array, returns array]
  5416. pg_copy_to(|resource connection, string table_name, [string delimiter], [string null_as])
  5417. [pg_dbname | Get the database name, returns string]
  5418. pg_dbname(|resource connection)
  5419. [pg_delete | Deletes records., returns mixed]
  5420. pg_delete(|resource connection, string table_name, array assoc_array, [int options])
  5421. [pg_end_copy | Sync with PostgreSQL backend, returns bool]
  5422. pg_end_copy(|[resource connection])
  5423. [pg_escape_bytea | Escape binary for bytea type, returns string]
  5424. pg_escape_bytea(|string data)
  5425. [pg_escape_string | Escape string for text/char type, returns string]
  5426. pg_escape_string(|string data)
  5427. [pg_fetch_all | Fetches all rows from a result as an array, returns array]
  5428. pg_fetch_all(|resource result)
  5429. [pg_fetch_array | Fetch a row as an array, returns array]
  5430. pg_fetch_array(|resource result, [int row], [int result_type])
  5431. [pg_fetch_assoc | Fetch a row as an associative array, returns array]
  5432. pg_fetch_assoc(|resource result, [int row])
  5433. [pg_fetch_object | Fetch a row as an object, returns object]
  5434. pg_fetch_object(|resource result, [int row], [int result_type])
  5435. [pg_fetch_result | Returns values from a result resource, returns mixed]
  5436. pg_fetch_result(|resource result, int row, mixed field)
  5437. [pg_fetch_row | Get a row as an enumerated array, returns array]
  5438. pg_fetch_row(|resource result, int row)
  5439. [pg_field_is_null | Test if a field is NULL, returns int]
  5440. pg_field_is_null(|resource result, int row, mixed field)
  5441. [pg_field_name | Returns the name of a field, returns string]
  5442. pg_field_name(|resource result, int field_number)
  5443. [pg_field_num | Returns the field number of the named field, returns int]
  5444. pg_field_num(|resource result, string field_name)
  5445. [pg_field_prtlen | Returns the printed length, returns int]
  5446. pg_field_prtlen(|resource result, int row_number, string field_name)
  5447. [pg_field_size | Returns the internal storage size of the named field, returns int]
  5448. pg_field_size(|resource result, int field_number)
  5449. [pg_field_type | Returns the type name for the corresponding field number, returns string]
  5450. pg_field_type(|resource result, int field_number)
  5451. [pg_free_result | Free result memory, returns bool]
  5452. pg_free_result(|resource result)
  5453. [pg_get_notify | Ping database connection, returns array]
  5454. pg_get_notify(|resource connection, [int result_type])
  5455. [pg_get_pid | Ping database connection, returns int]
  5456. pg_get_pid(|resource connection)
  5457. [pg_get_result | Get asynchronous query result, returns resource]
  5458. pg_get_result(|[resource connection])
  5459. [pg_host | Returns the host name associated with the connection, returns string]
  5460. pg_host(|resource connection)
  5461. [pg_insert | Insert array into table., returns bool]
  5462. pg_insert(|resource connection, string table_name, array assoc_array, [int options])
  5463. [pg_last_error | Get the last error message string of a connection, returns string]
  5464. pg_last_error(|[resource connection])
  5465. [pg_last_notice | Returns the last notice message from PostgreSQL server, returns string]
  5466. pg_last_notice(|resource connection)
  5467. [pg_last_oid | Returns the last object's oid, returns int]
  5468. pg_last_oid(|resource result)
  5469. [pg_lo_close | Close a large object, returns bool]
  5470. pg_lo_close(|resource large_object)
  5471. [pg_lo_create | Create a large object, returns int]
  5472. pg_lo_create(|resource connection)
  5473. [pg_lo_export | Export a large object to file, returns bool]
  5474. pg_lo_export(|int oid, string pathname, [resource connection])
  5475. [pg_lo_import | Import a large object from file, returns int]
  5476. pg_lo_import(|[resource connection], string pathname)
  5477. [pg_lo_open | Open a large object, returns resource]
  5478. pg_lo_open(|resource connection, int oid, string mode)
  5479. [pg_lo_read_all | Reads an entire large object and send straight to browser, returns int]
  5480. pg_lo_read_all(|resource large_object)
  5481. [pg_lo_read | Read a large object, returns string]
  5482. pg_lo_read(|resource large_object, int len)
  5483. [pg_lo_seek | Seeks position of large object, returns bool]
  5484. pg_lo_seek(|resource large_object, int offset, [int whence])
  5485. [pg_lo_tell | Returns current position of large object, returns int]
  5486. pg_lo_tell(|resource large_object)
  5487. [pg_lo_unlink | Delete a large object, returns bool]
  5488. pg_lo_unlink(|resource connection, int oid)
  5489. [pg_lo_write | Write a large object, returns int]
  5490. pg_lo_write(|resource large_object, string data)
  5491. [pg_meta_data | Get meta data for table., returns array]
  5492. pg_meta_data(|resource connection, string table_name)
  5493. [pg_num_fields | Returns the number of fields, returns int]
  5494. pg_num_fields(|resource result)
  5495. [pg_num_rows | Returns the number of rows, returns int]
  5496. pg_num_rows(|resource result)
  5497. [pg_options | Get the options associated with the connection, returns string]
  5498. pg_options(|resource connection)
  5499. [pg_pconnect | Open a persistent PostgreSQL connection, returns resource]
  5500. pg_pconnect(|string connection_string)
  5501. [pg_ping | Ping database connection, returns bool]
  5502. pg_ping(|resource connection)
  5503. [pg_port | Return the port number associated with the connection, returns int]
  5504. pg_port(|resource connection)
  5505. [pg_put_line | Send a NULL-terminated string to PostgreSQL backend, returns bool]
  5506. pg_put_line(|[resource connection], string data)
  5507. [pg_query | Execute a query, returns resource]
  5508. pg_query(|resource connection, string query)
  5509. [pg_result_error | Get error message associated with result, returns string]
  5510. pg_result_error(|resource result)
  5511. [pg_result_seek | Set internal row offset in result resource, returns array]
  5512. pg_result_seek(|resource result, int offset)
  5513. [pg_result_status | Get status of query result, returns int]
  5514. pg_result_status(|resource result)
  5515. [pg_select | Select records., returns array]
  5516. pg_select(|resource connection, string table_name, array assoc_array, [int options])
  5517. [pg_send_query | Sends asynchronous query, returns bool]
  5518. pg_send_query(|resource connection, string query)
  5519. [pg_set_client_encoding | Set the client encoding, returns int]
  5520. pg_set_client_encoding(|[resource connection], string encoding)
  5521. [pg_trace | Enable tracing a PostgreSQL connection, returns bool]
  5522. pg_trace(|string pathname, [string mode], [resource connection])
  5523. [pg_tty | Return the tty name associated with the connection, returns string]
  5524. pg_tty(|resource connection)
  5525. [pg_unescape_bytea | Escape binary for bytea type, returns string]
  5526. pg_unescape_bytea(|string data)
  5527. [pg_untrace | Disable tracing of a PostgreSQL connection, returns bool]
  5528. pg_untrace(|[resource connection])
  5529. [pg_update | Update table., returns mixed]
  5530. pg_update(|resource connection, string table_name, array data, array condition, [int options])
  5531. ; -----------------------------------------------------------------------------
  5532. ; PCNTL - Process Control Functions
  5533. ; -----------------------------------------------------------------------------
  5534. [pcntl_exec | Executes specified program in current process space, returns bool]
  5535. pcntl_exec(|string path, [array args], [array envs])
  5536. [pcntl_fork | Forks the currently running process, returns int]
  5537. pcntl_fork()|
  5538. [pcntl_signal | Installs a signal handler, returns bool]
  5539. pcntl_signal(|int signo, callback handle, [bool restart_syscalls])
  5540. [pcntl_waitpid | Waits on or returns the status of a forked child, returns int]
  5541. pcntl_waitpid(|int pid, int &status, int options)
  5542. [pcntl_wexitstatus | Returns the return code of a terminated child, returns int]
  5543. pcntl_wexitstatus(|int status)
  5544. [pcntl_wifexited | Returns TRUE if status code represents a successful exit, returns int]
  5545. pcntl_wifexited(|int status)
  5546. [pcntl_wifsignaled | Returns TRUE if status code represents a termination due to a signal, returns int]
  5547. pcntl_wifsignaled(|int status)
  5548. [pcntl_wifstopped | Returns TRUE if child process is currently stopped, returns int]
  5549. pcntl_wifstopped(|int status)
  5550. [pcntl_wstopsig | Returns the signal which caused the child to stop, returns int]
  5551. pcntl_wstopsig(|int status)
  5552. [pcntl_wtermsig | Returns the signal which caused the child to terminate, returns int]
  5553. pcntl_wtermsig(|int status)
  5554. ; -----------------------------------------------------------------------------
  5555. ; Program Execution - Program Execution functions
  5556. ; -----------------------------------------------------------------------------
  5557. [escapeshellarg | escape a string to be used as a shell argument, returns string]
  5558. escapeshellarg(|string arg)
  5559. [escapeshellcmd | escape shell metacharacters, returns string]
  5560. escapeshellcmd(|string command)
  5561. [exec | Execute an external program, returns string]
  5562. exec(|string command, [array output], [int return_var])
  5563. [passthru | Execute an external program and display raw output, returns void]
  5564. passthru(|string command, [int return_var])
  5565. [proc_close | Close a process opened by proc_open and return the exit code of that process., returns int]
  5566. proc_close(|resource process)
  5567. [proc_get_status | Get information about a process opened by proc_open, returns array]
  5568. proc_get_status(|resource process)
  5569. [proc_nice | Change the priority of the current process, returns bool]
  5570. proc_nice(|int priority)
  5571. [proc_open | Execute a command and open file pointers for input/output, returns resource]
  5572. proc_open(|string cmd, array descriptorspec, array pipes)
  5573. [proc_terminate | kills a process opened by proc_open, returns int]
  5574. proc_terminate(|resource process, [int signal])
  5575. [shell_exec | Execute command via shell and return the complete output as a string, returns string]
  5576. shell_exec(|string cmd)
  5577. [system | Execute an external program and display the output, returns string]
  5578. system(|string command, [int return_var])
  5579. ; -----------------------------------------------------------------------------
  5580. ; Printer - Printer functions
  5581. ; -----------------------------------------------------------------------------
  5582. [printer_abort | Deletes the printer's spool file, returns void]
  5583. printer_abort(|resource handle)
  5584. [printer_close | Close an open printer connection, returns void]
  5585. printer_close(|resource handle)
  5586. [printer_create_brush | Create a new brush, returns mixed]
  5587. printer_create_brush(|int style, string color)
  5588. [printer_create_dc | Create a new device context, returns void]
  5589. printer_create_dc(|resource handle)
  5590. [printer_create_font | Create a new font, returns mixed]
  5591. printer_create_font(|string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton)
  5592. [printer_create_pen | Create a new pen, returns mixed]
  5593. printer_create_pen(|int style, int width, string color)
  5594. [printer_delete_brush | Delete a brush, returns bool]
  5595. printer_delete_brush(|resource handle)
  5596. [printer_delete_dc | Delete a device context, returns bool]
  5597. printer_delete_dc(|resource handle)
  5598. [printer_delete_font | Delete a font, returns bool]
  5599. printer_delete_font(|resource handle)
  5600. [printer_delete_pen | Delete a pen, returns bool]
  5601. printer_delete_pen(|resource handle)
  5602. [printer_draw_bmp | Draw a bmp, returns void]
  5603. printer_draw_bmp(|resource handle, string filename, int x, int y)
  5604. [printer_draw_chord | Draw a chord, returns void]
  5605. printer_draw_chord(|resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1)
  5606. [printer_draw_elipse | Draw an ellipse, returns void]
  5607. printer_draw_elipse(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y)
  5608. [printer_draw_line | Draw a line, returns void]
  5609. printer_draw_line(|resource printer_handle, int from_x, int from_y, int to_x, int to_y)
  5610. [printer_draw_pie | Draw a pie, returns void]
  5611. printer_draw_pie(|resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y)
  5612. [printer_draw_rectangle | Draw a rectangle, returns void]
  5613. printer_draw_rectangle(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y)
  5614. [printer_draw_roundrect | Draw a rectangle with rounded corners, returns void]
  5615. printer_draw_roundrect(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height)
  5616. [printer_draw_text | Draw text, returns void]
  5617. printer_draw_text(|resource printer_handle, string text, int x, int y)
  5618. [printer_end_doc | Close document, returns bool]
  5619. printer_end_doc(|resource handle)
  5620. [printer_end_page | Close active page, returns bool]
  5621. printer_end_page(|resource handle)
  5622. [printer_get_option | Retrieve printer configuration data, returns mixed]
  5623. printer_get_option(|resource handle, string option)
  5624. [printer_list | Return an array of printers attached to the server, returns array]
  5625. printer_list(|int enumtype, [string name], [int level])
  5626. [printer_logical_fontheight | Get logical font height, returns int]
  5627. printer_logical_fontheight(|resource handle, int height)
  5628. [printer_open | Open connection to a printer, returns mixed]
  5629. printer_open(|[string devicename])
  5630. [printer_select_brush | Select a brush, returns void]
  5631. printer_select_brush(|resource printer_handle, resource brush_handle)
  5632. [printer_select_font | Select a font, returns void]
  5633. printer_select_font(|resource printer_handle, resource font_handle)
  5634. [printer_select_pen | Select a pen, returns void]
  5635. printer_select_pen(|resource printer_handle, resource pen_handle)
  5636. [printer_set_option | Configure the printer connection, returns bool]
  5637. printer_set_option(|resource handle, int option, mixed value)
  5638. [printer_start_doc | Start a new document, returns bool]
  5639. printer_start_doc(|resource handle, [string document])
  5640. [printer_start_page | Start a new page, returns bool]
  5641. printer_start_page(|resource handle)
  5642. [printer_write | Write data to the printer, returns bool]
  5643. printer_write(|resource handle, string content)
  5644. ; -----------------------------------------------------------------------------
  5645. ; Pspell - Pspell Functions
  5646. ; -----------------------------------------------------------------------------
  5647. [pspell_add_to_personal | Add the word to a personal wordlist, returns int]
  5648. pspell_add_to_personal(|int dictionary_link, string word)
  5649. [pspell_add_to_session | Add the word to the wordlist in the current session, returns int]
  5650. pspell_add_to_session(|int dictionary_link, string word)
  5651. [pspell_check | Check a word, returns bool]
  5652. pspell_check(|int dictionary_link, string word)
  5653. [pspell_clear_session | Clear the current session, returns int]
  5654. pspell_clear_session(|int dictionary_link)
  5655. [pspell_config_create | Create a config used to open a dictionary, returns int]
  5656. pspell_config_create(|string language, [string spelling], [string jargon], [string encoding])
  5657. [pspell_config_ignore | Ignore words less than N characters long, returns int]
  5658. pspell_config_ignore(|int dictionary_link, int n)
  5659. [pspell_config_mode | Change the mode number of suggestions returned, returns int]
  5660. pspell_config_mode(|int dictionary_link, int mode)
  5661. [pspell_config_personal | Set a file that contains personal wordlist, returns int]
  5662. pspell_config_personal(|int dictionary_link, string file)
  5663. [pspell_config_repl | Set a file that contains replacement pairs, returns int]
  5664. pspell_config_repl(|int dictionary_link, string file)
  5665. [pspell_config_runtogether | Consider run-together words as valid compounds, returns int]
  5666. pspell_config_runtogether(|int dictionary_link, bool flag)
  5667. [pspell_config_save_repl | Determine whether to save a replacement pairs list along with the wordlist, returns int]
  5668. pspell_config_save_repl(|int dictionary_link, bool flag)
  5669. [pspell_new_config | Load a new dictionary with settings based on a given config, returns int]
  5670. pspell_new_config(|int config)
  5671. [pspell_new_personal | Load a new dictionary with personal wordlist, returns int]
  5672. pspell_new_personal(|string personal, string language, [string spelling], [string jargon], [string encoding], [int mode])
  5673. [pspell_new | Load a new dictionary, returns int]
  5674. pspell_new(|string language, [string spelling], [string jargon], [string encoding], [int mode])
  5675. [pspell_save_wordlist | Save the personal wordlist to a file, returns int]
  5676. pspell_save_wordlist(|int dictionary_link)
  5677. [pspell_store_replacement | Store a replacement pair for a word, returns int]
  5678. pspell_store_replacement(|int dictionary_link, string misspelled, string correct)
  5679. [pspell_suggest | Suggest spellings of a word, returns array]
  5680. pspell_suggest(|int dictionary_link, string word)
  5681. ; -----------------------------------------------------------------------------
  5682. ; Readline - GNU Readline
  5683. ; -----------------------------------------------------------------------------
  5684. [readline_add_history | Adds a line to the history, returns void]
  5685. readline_add_history(|string line)
  5686. [readline_clear_history | Clears the history, returns bool]
  5687. readline_clear_history()|
  5688. [readline_completion_function | Registers a completion function, returns bool]
  5689. readline_completion_function(|string line)
  5690. [readline_info | Gets/sets various internal readline variables, returns mixed]
  5691. readline_info(|[string varname], [string newvalue])
  5692. [readline_list_history | Lists the history, returns array]
  5693. readline_list_history()|
  5694. [readline_read_history | Reads the history, returns bool]
  5695. readline_read_history(|string filename)
  5696. [readline_write_history | Writes the history, returns bool]
  5697. readline_write_history(|string filename)
  5698. [readline | Reads a line, returns string]
  5699. readline(|[string prompt])
  5700. ; -----------------------------------------------------------------------------
  5701. ; Recode - GNU Recode functions
  5702. ; -----------------------------------------------------------------------------
  5703. [recode_file | Recode from file to file according to recode request, returns bool]
  5704. recode_file(|string request, resource input, resource output)
  5705. [recode_string | Recode a string according to a recode request, returns string]
  5706. recode_string(|string request, string string)
  5707. [recode | Alias for recode_string]
  5708. ; -----------------------------------------------------------------------------
  5709. ; PCRE - Regular Expression Functions (Perl-Compatible)
  5710. ; -----------------------------------------------------------------------------
  5711. [Pattern Modifiers | Describes possible modifiers in regex patterns]
  5712. [Pattern Syntax | Describes PCRE regex syntax]
  5713. [preg_grep | Return array entries that match the pattern, returns array]
  5714. preg_grep(|string pattern, array input)
  5715. [preg_match_all | Perform a global regular expression match, returns int]
  5716. preg_match_all(|string pattern, string subject, array matches, [int flags])
  5717. [preg_match | Perform a regular expression match, returns int]
  5718. preg_match(|string pattern, string subject, [array matches], [int flags])
  5719. [preg_quote | Quote regular expression characters, returns string]
  5720. preg_quote(|string str, [string delimiter])
  5721. [preg_replace_callback | Perform a regular expression search and replace using a callback, returns mixed]
  5722. preg_replace_callback(|mixed pattern, callback callback, mixed subject, [int limit])
  5723. [preg_replace | Perform a regular expression search and replace, returns mixed]
  5724. preg_replace(|mixed pattern, mixed replacement, mixed subject, [int limit])
  5725. [preg_split | Split string by a regular expression, returns array]
  5726. preg_split(|string pattern, string subject, [int limit], [int flags])
  5727. ; -----------------------------------------------------------------------------
  5728. ; qtdom - qtdom functions
  5729. ; -----------------------------------------------------------------------------
  5730. [qdom_error | Returns the error string from the last QDOM operation or FALSE if no errors occured, returns string]
  5731. qdom_error()|
  5732. [qdom_tree | creates a tree of an xml string, returns object]
  5733. qdom_tree(|string )
  5734. ; -----------------------------------------------------------------------------
  5735. ; Regexps - Regular Expression Functions (POSIX Extended)
  5736. ; -----------------------------------------------------------------------------
  5737. [ereg_replace | Replace regular expression, returns string]
  5738. ereg_replace(|string pattern, string replacement, string string)
  5739. [ereg | Regular expression match, returns bool]
  5740. ereg(|string pattern, string string, [array regs])
  5741. [eregi_replace | replace regular expression case insensitive, returns string]
  5742. eregi_replace(|string pattern, string replacement, string string)
  5743. [eregi | case insensitive regular expression match, returns bool]
  5744. eregi(|string pattern, string string, [array regs])
  5745. [split | split string into array by regular expression, returns array]
  5746. split(|string pattern, string string, [int limit])
  5747. [spliti | Split string into array by regular expression case insensitive, returns array]
  5748. spliti(|string pattern, string string, [int limit])
  5749. [sql_regcase | Make regular expression for case insensitive match, returns string]
  5750. sql_regcase(|string string)
  5751. ; -----------------------------------------------------------------------------
  5752. ; Semaphore - Semaphore, Shared Memory and IPC Functions
  5753. ; -----------------------------------------------------------------------------
  5754. [ftok | Convert a pathname and a project identifier to a System V IPC key, returns int]
  5755. ftok(|string pathname, string proj)
  5756. [msg_get_queue | Create or attach to a message queue, returns int]
  5757. msg_get_queue(|int key, [int perms])
  5758. [msg_receive | Receive a message from a message queue, returns bool]
  5759. msg_receive(|int queue, int desiredmsgtype, int msgtype, int maxsize, mixed message, [bool unserialize], [int flags], [int errorcode])
  5760. [msg_remove_queue | Destroy a message queue, returns bool]
  5761. msg_remove_queue(|int queue)
  5762. [msg_send | Send a message to a message queue, returns bool]
  5763. msg_send(|int queue, int msgtype, mixed message, [bool serialize], [bool blocking], [int errorcode])
  5764. [msg_set_queue | Set information in the message queue data structure, returns bool]
  5765. msg_set_queue(|int queue, array data)
  5766. [msg_stat_queue | Returns information from the message queue data structure, returns array]
  5767. msg_stat_queue(|int queue)
  5768. [sem_acquire | Acquire a semaphore, returns bool]
  5769. sem_acquire(|int sem_identifier)
  5770. [sem_get | Get a semaphore id, returns int]
  5771. sem_get(|int key, [int max_acquire], [int perm])
  5772. [sem_release | Release a semaphore, returns bool]
  5773. sem_release(|int sem_identifier)
  5774. [sem_remove | Remove a semaphore, returns bool]
  5775. sem_remove(|int sem_identifier)
  5776. [shm_attach | Creates or open a shared memory segment, returns int]
  5777. shm_attach(|int key, [int memsize], [int perm])
  5778. [shm_detach | Disconnects from shared memory segment, returns bool]
  5779. shm_detach(|int shm_identifier)
  5780. [shm_get_var | Returns a variable from shared memory, returns mixed]
  5781. shm_get_var(|int id, int variable_key)
  5782. [shm_put_var | Inserts or updates a variable in shared memory, returns int]
  5783. shm_put_var(|int shm_identifier, int variable_key, mixed variable)
  5784. [shm_remove_var | Removes a variable from shared memory, returns int]
  5785. shm_remove_var(|int id, int variable_key)
  5786. [shm_remove | Removes shared memory from Unix systems, returns int]
  5787. shm_remove(|int shm_identifier)
  5788. ; -----------------------------------------------------------------------------
  5789. ; SESAM - SESAM database functions
  5790. ; -----------------------------------------------------------------------------
  5791. [sesam_affected_rows | Get number of rows affected by an immediate query, returns int]
  5792. sesam_affected_rows(|string result_id)
  5793. [sesam_commit | Commit pending updates to the SESAM database, returns bool]
  5794. sesam_commit()|
  5795. [sesam_connect | Open SESAM database connection, returns bool]
  5796. sesam_connect(|string catalog, string schema, string user)
  5797. [sesam_diagnostic | Return status information for last SESAM call, returns array]
  5798. sesam_diagnostic()|
  5799. [sesam_disconnect | Detach from SESAM connection, returns bool]
  5800. sesam_disconnect()|
  5801. [sesam_errormsg | Returns error message of last SESAM call, returns string]
  5802. sesam_errormsg()|
  5803. [sesam_execimm | Execute an "immediate" SQL-statement, returns string]
  5804. sesam_execimm(|string query)
  5805. [sesam_fetch_array | Fetch one row as an associative array, returns array]
  5806. sesam_fetch_array(|string result_id, [int whence], [int offset])
  5807. [sesam_fetch_result | Return all or part of a query result, returns mixed]
  5808. sesam_fetch_result(|string result_id, [int max_rows])
  5809. [sesam_fetch_row | Fetch one row as an array, returns array]
  5810. sesam_fetch_row(|string result_id, [int whence], [int offset])
  5811. [sesam_field_array | Return meta information about individual columns in a result, returns array]
  5812. sesam_field_array(|string result_id)
  5813. [sesam_field_name | Return one column name of the result set, returns int]
  5814. sesam_field_name(|string result_id, int index)
  5815. [sesam_free_result | Releases resources for the query, returns int]
  5816. sesam_free_result(|string result_id)
  5817. [sesam_num_fields | Return the number of fields/columns in a result set, returns int]
  5818. sesam_num_fields(|string result_id)
  5819. [sesam_query | Perform a SESAM SQL query and prepare the result, returns string]
  5820. sesam_query(|string query, [bool scrollable])
  5821. [sesam_rollback | Discard any pending updates to the SESAM database, returns bool]
  5822. sesam_rollback()|
  5823. [sesam_seek_row | Set scrollable cursor mode for subsequent fetches, returns bool]
  5824. sesam_seek_row(|string result_id, int whence, [int offset])
  5825. [sesam_settransaction | Set SESAM transaction parameters, returns bool]
  5826. sesam_settransaction(|int isolation_level, int read_only)
  5827. ; -----------------------------------------------------------------------------
  5828. ; Sessions - Session handling functions
  5829. ; -----------------------------------------------------------------------------
  5830. [session_cache_expire | Return current cache expire, returns int]
  5831. session_cache_expire(|[int new_cache_expire])
  5832. [session_cache_limiter | Get and/or set the current cache limiter, returns string]
  5833. session_cache_limiter(|[string cache_limiter])
  5834. [session_decode | Decodes session data from a string, returns bool]
  5835. session_decode(|string data)
  5836. [session_destroy | Destroys all data registered to a session, returns bool]
  5837. session_destroy()|
  5838. [session_encode | Encodes the current session data as a string, returns string]
  5839. session_encode()|
  5840. [session_get_cookie_params | Get the session cookie parameters, returns array]
  5841. session_get_cookie_params()|
  5842. [session_id | Get and/or set the current session id, returns string]
  5843. session_id(|[string id])
  5844. [session_is_registered | Find out whether a global variable is registered in a session, returns bool]
  5845. session_is_registered(|string name)
  5846. [session_module_name | Get and/or set the current session module, returns string]
  5847. session_module_name(|[string module])
  5848. [session_name | Get and/or set the current session name, returns string]
  5849. session_name(|[string name])
  5850. [session_regenerate_id | Update the current session id with a newly generated one, returns bool]
  5851. session_regenerate_id()|
  5852. [session_register | Register one or more global variables with the current session, returns bool]
  5853. session_register(|mixed name, [mixed ...])
  5854. [session_save_path | Get and/or set the current session save path, returns string]
  5855. session_save_path(|[string path])
  5856. [session_set_cookie_params | Set the session cookie parameters, returns void]
  5857. session_set_cookie_params(|int lifetime, [string path], [string domain], [bool secure])
  5858. [session_set_save_handler | Sets user-level session storage functions, returns bool]
  5859. session_set_save_handler(|string open, string close, string read, string write, string destroy, string gc)
  5860. [session_start | Initialize session data, returns bool]
  5861. session_start()|
  5862. [session_unregister | Unregister a global variable from the current session, returns bool]
  5863. session_unregister(|string name)
  5864. [session_unset | Free all session variables, returns void]
  5865. session_unset()|
  5866. [session_write_close | Write session data and end session, returns void]
  5867. session_write_close()|
  5868. ; -----------------------------------------------------------------------------
  5869. ; shmop - Shared Memory Functions
  5870. ; -----------------------------------------------------------------------------
  5871. [shmop_close | Close shared memory block, returns int]
  5872. shmop_close(|int shmid)
  5873. [shmop_delete | Delete shared memory block, returns int]
  5874. shmop_delete(|int shmid)
  5875. [shmop_open | Create or open shared memory block, returns int]
  5876. shmop_open(|int key, string flags, int mode, int size)
  5877. [shmop_read | Read data from shared memory block, returns string]
  5878. shmop_read(|int shmid, int start, int count)
  5879. [shmop_size | Get size of shared memory block, returns int]
  5880. shmop_size(|int shmid)
  5881. [shmop_write | Write data into shared memory block, returns int]
  5882. shmop_write(|int shmid, string data, int offset)
  5883. ; -----------------------------------------------------------------------------
  5884. ; SQLite - SQLite
  5885. ; -----------------------------------------------------------------------------
  5886. [sqlite_array_query | Execute a query against a given database and returns an array., returns array]
  5887. sqlite_array_query(|resource dbhandle, string query, [int result_type], [bool decode_binary])
  5888. [sqlite_busy_timeout | Set busy timeout duration, or disable busy handlers., returns void]
  5889. sqlite_busy_timeout(|resource dbhandle, int milliseconds)
  5890. [sqlite_changes | Returns the number of rows that were changed by the most recent SQL statement., returns int]
  5891. sqlite_changes(|resource dbhandle)
  5892. [sqlite_close | Closes an open SQLite database., returns void]
  5893. sqlite_close(|resource dbhandle)
  5894. [sqlite_column | Fetches a column from the current row of a result set., returns mixed]
  5895. sqlite_column(|resource result, mixed index_or_name, [bool decode_binary])
  5896. [sqlite_create_aggregate | Register an aggregating UDF for use in SQL statements., returns bool]
  5897. sqlite_create_aggregate(|resource dbhandle, string function_name, mixed step_func, mixed finalize_func, [int num_args])
  5898. [sqlite_create_function | Registers a "regular" User Defined Function for use in SQL statements., returns bool]
  5899. sqlite_create_function(|resource dbhandle, string function_name, mixed callback, [int num_args])
  5900. [sqlite_current | Fetches the current row from a result set as an array., returns array]
  5901. sqlite_current(|resource result, [int result_type], [bool decode_binary])
  5902. [sqlite_error_string | Returns the textual description of an error code., returns string]
  5903. sqlite_error_string(|int error_code)
  5904. [sqlite_escape_string | Escapes a string for use as a query parameter, returns string]
  5905. sqlite_escape_string(|string item)
  5906. [sqlite_fetch_array | Fetches the next row from a result set as an array., returns array]
  5907. sqlite_fetch_array(|resource result, [int result_type], [bool decode_binary])
  5908. [sqlite_fetch_single | Fetches the first column of a result set as a string., returns string]
  5909. sqlite_fetch_single(|resource result, [int result_type], [bool decode_binary])
  5910. [sqlite_fetch_string | Alias of sqlite_fetch_single]
  5911. [sqlite_field_name | Returns the name of a particular field., returns string]
  5912. sqlite_field_name(|resource result, int field_index)
  5913. [sqlite_has_more | Returns whether or not more rows are available., returns bool]
  5914. sqlite_has_more(|resource result)
  5915. [sqlite_last_error | Returns the error code of the last error for a database., returns int]
  5916. sqlite_last_error(|resource dbhandle)
  5917. [sqlite_last_insert_rowid | Returns the rowid of the most recently inserted row., returns int]
  5918. sqlite_last_insert_rowid(|resource dbhandle)
  5919. [sqlite_libencoding | Returns the encoding of the linked SQLite library., returns string]
  5920. sqlite_libencoding()|
  5921. [sqlite_libversion | Returns the version of the linked SQLite library., returns string]
  5922. sqlite_libversion()|
  5923. [sqlite_next | Seek to the next row number., returns bool]
  5924. sqlite_next(|resource result)
  5925. [sqlite_num_fields | Returns the number of fields in a result set., returns int]
  5926. sqlite_num_fields(|resource result)
  5927. [sqlite_num_rows | Returns the number of rows in a buffered result set., returns int]
  5928. sqlite_num_rows(|resource result)
  5929. [sqlite_open | Opens a SQLite database. Will create the database if it does not exist, returns resource]
  5930. sqlite_open(|string filename, [int mode], [string &error_message])
  5931. [sqlite_popen | Opens a persistent handle to an SQLite database. Will create the database if it does not exist., returns resource]
  5932. sqlite_popen(|string filename, [int mode], [string &error_message])
  5933. [sqlite_query | Executes a query against a given database and returns a result handle., returns resource]
  5934. sqlite_query(|resource dbhandle, string query)
  5935. [sqlite_rewind | Seek to the first row number., returns bool]
  5936. sqlite_rewind(|resource result)
  5937. [sqlite_seek | Seek to a particular row number of a buffered result set., returns bool]
  5938. sqlite_seek(|resource result, int rownum)
  5939. [sqlite_udf_decode_binary | Decode binary data passed as parameters to an UDF., returns string]
  5940. sqlite_udf_decode_binary(|string data)
  5941. [sqlite_udf_encode_binary | Encode binary data before returning it from an UDF., returns string]
  5942. sqlite_udf_encode_binary(|string data)
  5943. [sqlite_unbuffered_query | Execute a query that does not prefetch and buffer all data, returns resource]
  5944. sqlite_unbuffered_query(|resource dbhandle, string query)
  5945. ; -----------------------------------------------------------------------------
  5946. ; SWF - Shockwave Flash functions
  5947. ; -----------------------------------------------------------------------------
  5948. [swf_actiongeturl | Get a URL from a Shockwave Flash movie, returns void]
  5949. swf_actiongeturl(|string url, string target)
  5950. [swf_actiongotoframe | Play a frame and then stop, returns void]
  5951. swf_actiongotoframe(|int framenumber)
  5952. [swf_actiongotolabel | Display a frame with the specified label, returns void]
  5953. swf_actiongotolabel(|string label)
  5954. [swf_actionnextframe | Go foward one frame, returns void]
  5955. swf_actionnextframe()|
  5956. [swf_actionplay | Start playing the flash movie from the current frame, returns void]
  5957. swf_actionplay()|
  5958. [swf_actionprevframe | Go backwards one frame, returns void]
  5959. swf_actionprevframe()|
  5960. [swf_actionsettarget | Set the context for actions, returns void]
  5961. swf_actionsettarget(|string target)
  5962. [swf_actionstop | Stop playing the flash movie at the current frame, returns void]
  5963. swf_actionstop()|
  5964. [swf_actiontogglequality | Toggle between low and high quality, returns void]
  5965. swf_actiontogglequality()|
  5966. [swf_actionwaitforframe | Skip actions if a frame has not been loaded, returns void]
  5967. swf_actionwaitforframe(|int framenumber, int skipcount)
  5968. [swf_addbuttonrecord | Controls location, appearance and active area of the current button, returns void]
  5969. swf_addbuttonrecord(|int states, int shapeid, int depth)
  5970. [swf_addcolor | Set the global add color to the rgba value specified, returns void]
  5971. swf_addcolor(|float r, float g, float b, float a)
  5972. [swf_closefile | Close the current Shockwave Flash file, returns void]
  5973. swf_closefile(|[int return_file])
  5974. [swf_definebitmap | Define a bitmap, returns void]
  5975. swf_definebitmap(|int objid, string image_name)
  5976. [swf_definefont | Defines a font, returns void]
  5977. swf_definefont(|int fontid, string fontname)
  5978. [swf_defineline | Define a line, returns void]
  5979. swf_defineline(|int objid, float x1, float y1, float x2, float y2, float width)
  5980. [swf_definepoly | Define a polygon, returns void]
  5981. swf_definepoly(|int objid, array coords, int npoints, float width)
  5982. [swf_definerect | Define a rectangle, returns void]
  5983. swf_definerect(|int objid, float x1, float y1, float x2, float y2, float width)
  5984. [swf_definetext | Define a text string, returns void]
  5985. swf_definetext(|int objid, string str, int docenter)
  5986. [swf_endbutton | End the definition of the current button, returns void]
  5987. swf_endbutton()|
  5988. [swf_enddoaction | End the current action, returns void]
  5989. swf_enddoaction()|
  5990. [swf_endshape | Completes the definition of the current shape, returns void]
  5991. swf_endshape()|
  5992. [swf_endsymbol | End the definition of a symbol, returns void]
  5993. swf_endsymbol()|
  5994. [swf_fontsize | Change the font size, returns void]
  5995. swf_fontsize(|float size)
  5996. [swf_fontslant | Set the font slant, returns void]
  5997. swf_fontslant(|float slant)
  5998. [swf_fonttracking | Set the current font tracking, returns void]
  5999. swf_fonttracking(|float tracking)
  6000. [swf_getbitmapinfo | Get information about a bitmap, returns array]
  6001. swf_getbitmapinfo(|int bitmapid)
  6002. [swf_getfontinfo | The height in pixels of a capital A and a lowercase x, returns array]
  6003. swf_getfontinfo()|
  6004. [swf_getframe | Get the frame number of the current frame, returns int]
  6005. swf_getframe()|
  6006. [swf_labelframe | Label the current frame, returns void]
  6007. swf_labelframe(|string name)
  6008. [swf_lookat | Define a viewing transformation, returns void]
  6009. swf_lookat(|float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist)
  6010. [swf_modifyobject | Modify an object, returns void]
  6011. swf_modifyobject(|int depth, int how)
  6012. [swf_mulcolor | Sets the global multiply color to the rgba value specified, returns void]
  6013. swf_mulcolor(|float r, float g, float b, float a)
  6014. [swf_nextid | Returns the next free object id, returns int]
  6015. swf_nextid()|
  6016. [swf_oncondition | Describe a transition used to trigger an action list, returns void]
  6017. swf_oncondition(|int transition)
  6018. [swf_openfile | Open a new Shockwave Flash file, returns void]
  6019. swf_openfile(|string filename, float width, float height, float framerate, float r, float g, float b)
  6020. [swf_ortho2 | Defines 2D orthographic mapping of user coordinates onto the current viewport, returns void]
  6021. swf_ortho2(|float xmin, float xmax, float ymin, float ymax)
  6022. [swf_ortho | Defines an orthographic mapping of user coordinates onto the current viewport, returns void]
  6023. swf_ortho(|float xmin, float xmax, float ymin, float ymax, float zmin, float zmax)
  6024. [swf_perspective | Define a perspective projection transformation, returns void]
  6025. swf_perspective(|float fovy, float aspect, float near, float far)
  6026. [swf_placeobject | Place an object onto the screen, returns void]
  6027. swf_placeobject(|int objid, int depth)
  6028. [swf_polarview | Define the viewer's position with polar coordinates, returns void]
  6029. swf_polarview(|float dist, float azimuth, float incidence, float twist)
  6030. [swf_popmatrix | Restore a previous transformation matrix, returns void]
  6031. swf_popmatrix()|
  6032. [swf_posround | Enables or Disables the rounding of the translation when objects are placed or moved, returns void]
  6033. swf_posround(|int round)
  6034. [swf_pushmatrix | Push the current transformation matrix back unto the stack, returns void]
  6035. swf_pushmatrix()|
  6036. [swf_removeobject | Remove an object, returns void]
  6037. swf_removeobject(|int depth)
  6038. [swf_rotate | Rotate the current transformation, returns void]
  6039. swf_rotate(|float angle, string axis)
  6040. [swf_scale | Scale the current transformation, returns void]
  6041. swf_scale(|float x, float y, float z)
  6042. [swf_setfont | Change the current font, returns void]
  6043. swf_setfont(|int fontid)
  6044. [swf_setframe | Switch to a specified frame, returns void]
  6045. swf_setframe(|int framenumber)
  6046. [swf_shapearc | Draw a circular arc, returns void]
  6047. swf_shapearc(|float x, float y, float r, float ang1, float ang2)
  6048. [swf_shapecurveto3 | Draw a cubic bezier curve, returns void]
  6049. swf_shapecurveto3(|float x1, float y1, float x2, float y2, float x3, float y3)
  6050. [swf_shapecurveto | Draw a quadratic bezier curve between two points, returns void]
  6051. swf_shapecurveto(|float x1, float y1, float x2, float y2)
  6052. [swf_shapefillbitmapclip | Set current fill mode to clipped bitmap, returns void]
  6053. swf_shapefillbitmapclip(|int bitmapid)
  6054. [swf_shapefillbitmaptile | Set current fill mode to tiled bitmap, returns void]
  6055. swf_shapefillbitmaptile(|int bitmapid)
  6056. [swf_shapefilloff | Turns off filling, returns void]
  6057. swf_shapefilloff()|
  6058. [swf_shapefillsolid | Set the current fill style to the specified color, returns void]
  6059. swf_shapefillsolid(|float r, float g, float b, float a)
  6060. [swf_shapelinesolid | Set the current line style, returns void]
  6061. swf_shapelinesolid(|float r, float g, float b, float a, float width)
  6062. [swf_shapelineto | Draw a line, returns void]
  6063. swf_shapelineto(|float x, float y)
  6064. [swf_shapemoveto | Move the current position, returns void]
  6065. swf_shapemoveto(|float x, float y)
  6066. [swf_showframe | Display the current frame, returns void]
  6067. swf_showframe()|
  6068. [swf_startbutton | Start the definition of a button, returns void]
  6069. swf_startbutton(|int objid, int type)
  6070. [swf_startdoaction | Start a description of an action list for the current frame, returns void]
  6071. swf_startdoaction()|
  6072. [swf_startshape | Start a complex shape, returns void]
  6073. swf_startshape(|int objid)
  6074. [swf_startsymbol | Define a symbol, returns void]
  6075. swf_startsymbol(|int objid)
  6076. [swf_textwidth | Get the width of a string, returns float]
  6077. swf_textwidth(|string str)
  6078. [swf_translate | Translate the current transformations, returns void]
  6079. swf_translate(|float x, float y, float z)
  6080. [swf_viewport | Select an area for future drawing, returns void]
  6081. swf_viewport(|float xmin, float xmax, float ymin, float ymax)
  6082. ; -----------------------------------------------------------------------------
  6083. ; SNMP - SNMP functions
  6084. ; -----------------------------------------------------------------------------
  6085. [snmp_get_quick_print | Fetches the current value of the UCD library's quick_print setting, returns bool]
  6086. snmp_get_quick_print()|
  6087. [snmp_set_quick_print | Set the value of quick_print within the UCD SNMP library, returns void]
  6088. snmp_set_quick_print(|bool quick_print)
  6089. [snmpget | Fetch an SNMP object, returns string]
  6090. snmpget(|string hostname, string community, string object_id, [int timeout], [int retries])
  6091. [snmprealwalk | Return all objects including their respective object ID within the specified one, returns array]
  6092. snmprealwalk(|string host, string community, string object_id, [int timeout], [int retries])
  6093. [snmpset | Set an SNMP object, returns bool]
  6094. snmpset(|string hostname, string community, string object_id, string type, mixed value, [int timeout], [int retries])
  6095. [snmpwalk | Fetch all the SNMP objects from an agent, returns array]
  6096. snmpwalk(|string hostname, string community, string object_id, [int timeout], [int retries])
  6097. [snmpwalkoid | Query for a tree of information about a network entity, returns array]
  6098. snmpwalkoid(|string hostname, string community, string object_id, [int timeout], [int retries])
  6099. ; -----------------------------------------------------------------------------
  6100. ; Sockets - Socket functions
  6101. ; -----------------------------------------------------------------------------
  6102. [socket_accept | Accepts a connection on a socket, returns resource]
  6103. socket_accept(|resource socket)
  6104. [socket_bind | Binds a name to a socket, returns bool]
  6105. socket_bind(|resource socket, string address, [int port])
  6106. [socket_clear_error | Clears the error on the socket or the last error code, returns void]
  6107. socket_clear_error(|[resource socket])
  6108. [socket_close | Closes a socket resource, returns void]
  6109. socket_close(|resource socket)
  6110. [socket_connect | Initiates a connection on a socket, returns bool]
  6111. socket_connect(|resource socket, string address, [int port])
  6112. [socket_create_listen | Opens a socket on port to accept connections, returns resource]
  6113. socket_create_listen(|int port, [int backlog])
  6114. [socket_create_pair | Creates a pair of indistinguishable sockets and stores them in fds., returns bool]
  6115. socket_create_pair(|int domain, int type, int protocol, array &fd)
  6116. [socket_create | Create a socket (endpoint for communication), returns resource]
  6117. socket_create(|int domain, int type, int protocol)
  6118. [socket_get_option | Gets socket options for the socket, returns mixed]
  6119. socket_get_option(|resource socket, int level, int optname)
  6120. [socket_getpeername | Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type., returns bool]
  6121. socket_getpeername(|resource socket, string &addr, [int &port])
  6122. [socket_getsockname | Queries the local side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type., returns bool]
  6123. socket_getsockname(|resource socket, string &addr, [int &port])
  6124. [socket_iovec_add | Adds a new vector to the scatter/gather array, returns bool]
  6125. socket_iovec_add(|resource iovec, int iov_len)
  6126. [socket_iovec_alloc | Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv, returns resource]
  6127. socket_iovec_alloc(|int num_vectors, [int ])
  6128. [socket_iovec_delete | Deletes a vector from an array of vectors, returns bool]
  6129. socket_iovec_delete(|resource iovec, int iov_pos)
  6130. [socket_iovec_fetch | Returns the data held in the iovec specified by iovec_id[iovec_position], returns string]
  6131. socket_iovec_fetch(|resource iovec, int iovec_position)
  6132. [socket_iovec_free | Frees the iovec specified by iovec_id, returns bool]
  6133. socket_iovec_free(|resource iovec)
  6134. [socket_iovec_set | Sets the data held in iovec_id[iovec_position] to new_val, returns bool]
  6135. socket_iovec_set(|resource iovec, int iovec_position, string new_val)
  6136. [socket_last_error | Returns the last error on the socket, returns int]
  6137. socket_last_error(|[resource socket])
  6138. [socket_listen | Listens for a connection on a socket, returns bool]
  6139. socket_listen(|resource socket, [int backlog])
  6140. [socket_read | Reads a maximum of length bytes from a socket, returns string]
  6141. socket_read(|resource socket, int length, [int type])
  6142. [socket_readv | Reads from an fd, using the scatter-gather array defined by iovec_id, returns bool]
  6143. socket_readv(|resource socket, resource iovec_id)
  6144. [socket_recv | Receives data from a connected socket, returns int]
  6145. socket_recv(|resource socket, string &buf, int len, int flags)
  6146. [socket_recvfrom | Receives data from a socket, connected or not, returns int]
  6147. socket_recvfrom(|resource socket, string &buf, int len, int flags, string &name, [int &port])
  6148. [socket_recvmsg | Used to receive messages on a socket, whether connection-oriented or not, returns bool]
  6149. socket_recvmsg(|resource socket, resource iovec, array &control, int &controllen, int &flags, string &addr, [int &port])
  6150. [socket_select | Runs the select() system call on the given arrays of sockets with a specified timeout, returns int]
  6151. socket_select(|array &read, array &write, array &except, int tv_sec, [int tv_usec])
  6152. [socket_send | Sends data to a connected socket, returns int]
  6153. socket_send(|resource socket, string buf, int len, int flags)
  6154. [socket_sendmsg | Sends a message to a socket, regardless of whether it is connection-oriented or not, returns bool]
  6155. socket_sendmsg(|resource socket, resource iovec, int flags, string addr, [int port])
  6156. [socket_sendto | Sends a message to a socket, whether it is connected or not, returns int]
  6157. socket_sendto(|resource socket, string buf, int len, int flags, string addr, [int port])
  6158. [socket_set_block | Sets blocking mode on a socket resource, returns bool]
  6159. socket_set_block(|resource socket)
  6160. [socket_set_nonblock | Sets nonblocking mode for file descriptor fd, returns bool]
  6161. socket_set_nonblock(|resource socket)
  6162. [socket_set_option | Sets socket options for the socket, returns bool]
  6163. socket_set_option(|resource socket, int level, int optname, mixed optval)
  6164. [socket_shutdown | Shuts down a socket for receiving, sending, or both., returns bool]
  6165. socket_shutdown(|resource socket, [int how])
  6166. [socket_strerror | Return a string describing a socket error, returns string]
  6167. socket_strerror(|int errno)
  6168. [socket_write | Write to a socket, returns int]
  6169. socket_write(|resource socket, string buffer, [int length])
  6170. [socket_writev | Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id, returns bool]
  6171. socket_writev(|resource socket, resource iovec_id)
  6172. ; -----------------------------------------------------------------------------
  6173. ; Streams - Stream functions
  6174. ; -----------------------------------------------------------------------------
  6175. [stream_context_create | Create a streams context, returns resource]
  6176. stream_context_create(|array options)
  6177. [stream_context_get_options | Retrieve options for a stream/wrapper/context, returns array]
  6178. stream_context_get_options(|resource stream|context)
  6179. [stream_context_set_option | Sets an option for a stream/wrapper/context, returns bool]
  6180. stream_context_set_option(|resource context|stream, string wrapper, string option, mixed value)
  6181. [stream_context_set_params | Set parameters for a stream/wrapper/context, returns bool]
  6182. stream_context_set_params(|resource stream|context, array params)
  6183. [stream_copy_to_stream | Copies data from one stream to another, returns int]
  6184. stream_copy_to_stream(|resource source, resource dest, [int maxlength])
  6185. [stream_filter_append | Attach a filter to a stream., returns bool]
  6186. stream_filter_append(|resource stream, string filtername, [int read_write], [mixed params])
  6187. [stream_filter_prepend | Attach a filter to a stream., returns bool]
  6188. stream_filter_prepend(|resource stream, string filtername, [int read_write], [mixed params])
  6189. [stream_filter_register | Register a stream filter implemented as a PHP class derived from php_user_filter, returns bool]
  6190. stream_filter_register(|string filtername, string classname)
  6191. [stream_get_filters | Retrieve list of registered filters, returns array]
  6192. stream_get_filters()|
  6193. [stream_get_line | Gets line from stream resource up to a given delimiter, returns string]
  6194. stream_get_line(|resource handle, int length, string ending)
  6195. [stream_get_meta_data | Retrieves header/meta data from streams/file pointers, returns array]
  6196. stream_get_meta_data(|resource stream)
  6197. [stream_get_transports | Retrieve list of registered socket transports, returns array]
  6198. stream_get_transports()|
  6199. [stream_get_wrappers | Retrieve list of registered streams, returns array]
  6200. stream_get_wrappers()|
  6201. [stream_register_wrapper | Alias of stream_wrapper_register]
  6202. [stream_select | Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec, returns int]
  6203. stream_select(|resource &read, resource &write, resource &except, int tv_sec, [int tv_usec])
  6204. [stream_set_blocking | Set blocking/non-blocking mode on a stream, returns bool]
  6205. stream_set_blocking(|resource stream, int mode)
  6206. [stream_set_timeout | Set timeout period on a stream, returns bool]
  6207. stream_set_timeout(|resource stream, int seconds, [int microseconds])
  6208. [stream_set_write_buffer | Sets file buffering on the given stream, returns int]
  6209. stream_set_write_buffer(|resource stream, int buffer)
  6210. [stream_socket_accept | Accept a connection on a socket created by stream_socket_server, returns resource]
  6211. stream_socket_accept(|resource server_socket, [int timeout], [string &peername])
  6212. [stream_socket_client | Open Internet or Unix domain socket connection, returns resource]
  6213. stream_socket_client(|string remote_socket, [int &errno], [string &errstr], [float timeout], [int flags], [resource context])
  6214. [stream_socket_get_name | Retrieve the name of the local or remote sockets, returns string]
  6215. stream_socket_get_name(|resource handle, bool want_peer)
  6216. [stream_socket_server | Create an Internet or Unix domain server socket, returns resource]
  6217. stream_socket_server(|string local_socket, [int &errno], [string &errstr], [int flags], [resource context])
  6218. [stream_wrapper_register | Register a URL wrapper implemented as a PHP class, returns bool]
  6219. stream_wrapper_register(|string protocol, string classname)
  6220. ; -----------------------------------------------------------------------------
  6221. ; Strings - String functions
  6222. ; -----------------------------------------------------------------------------
  6223. [addcslashes | Quote string with slashes in a C style, returns string]
  6224. addcslashes(|string str, string charlist)
  6225. [addslashes | Quote string with slashes, returns string]
  6226. addslashes(|string str)
  6227. [bin2hex | Convert binary data into hexadecimal representation, returns string]
  6228. bin2hex(|string str)
  6229. [chop | Alias of rtrim]
  6230. [chr | Return a specific character, returns string]
  6231. chr(|int ascii)
  6232. [chunk_split | Split a string into smaller chunks, returns string]
  6233. chunk_split(|string body, [int chunklen], [string end])
  6234. [convert_cyr_string | Convert from one Cyrillic character set to another, returns string]
  6235. convert_cyr_string(|string str, string from, string to)
  6236. [count_chars | Return information about characters used in a string, returns mixed]
  6237. count_chars(|string string, [int mode])
  6238. [crc32 | Calculates the crc32 polynomial of a string, returns int]
  6239. crc32(|string str)
  6240. [crypt | One-way string encryption (hashing), returns string]
  6241. crypt(|string str, [string salt])
  6242. [echo | Output one or more strings, returns void]
  6243. echo(|string arg1, [string argn...])
  6244. [explode | Split a string by string, returns array]
  6245. explode(|string separator, string string, [int limit])
  6246. [fprintf | Write a formatted string to a stream, returns int]
  6247. fprintf(|resource handle, string format, [mixed args])
  6248. [get_html_translation_table | Returns the translation table used by htmlspecialchars and htmlentities, returns array]
  6249. get_html_translation_table(|int table, [int quote_style])
  6250. [hebrev | Convert logical Hebrew text to visual text, returns string]
  6251. hebrev(|string hebrew_text, [int max_chars_per_line])
  6252. [hebrevc | Convert logical Hebrew text to visual text with newline conversion, returns string]
  6253. hebrevc(|string hebrew_text, [int max_chars_per_line])
  6254. [html_entity_decode | Convert all HTML entities to their applicable characters, returns string]
  6255. html_entity_decode(|string string, [int quote_style], [string charset])
  6256. [htmlentities | Convert all applicable characters to HTML entities, returns string]
  6257. htmlentities(|string string, [int quote_style], [string charset])
  6258. [htmlspecialchars | Convert special characters to HTML entities, returns string]
  6259. htmlspecialchars(|string string, [int quote_style], [string charset])
  6260. [implode | Join array elements with a string, returns string]
  6261. implode(|string glue, array pieces)
  6262. [join | Alias for implode]
  6263. [levenshtein | Calculate Levenshtein distance between two strings, returns int]
  6264. levenshtein(|string str1, string str2)
  6265. [localeconv | Get numeric formatting information, returns array]
  6266. localeconv()|
  6267. [ltrim | Strip whitespace from the beginning of a string, returns string]
  6268. ltrim(|string str, [string charlist])
  6269. [md5_file | Calculates the md5 hash of a given filename, returns string]
  6270. md5_file(|string filename, [bool raw_output])
  6271. [md5 | Calculate the md5 hash of a string, returns string]
  6272. md5(|string str, [bool raw_output])
  6273. [metaphone | Calculate the metaphone key of a string, returns string]
  6274. metaphone(|string str)
  6275. [money_format | Formats a number as a currency string, returns string]
  6276. money_format(|string format, float number)
  6277. [nl_langinfo | Query language and locale information, returns string]
  6278. nl_langinfo(|int item)
  6279. [nl2br | Inserts HTML line breaks before all newlines in a string, returns string]
  6280. nl2br(|string string)
  6281. [number_format | Format a number with grouped thousands, returns string]
  6282. number_format(|float number, [int decimals])
  6283. [ord | Return ASCII value of character, returns int]
  6284. ord(|string string)
  6285. [parse_str | Parses the string into variables, returns void]
  6286. parse_str(|string str, [array arr])
  6287. [print | Output a string, returns int]
  6288. print(|string arg)
  6289. [printf | Output a formatted string, returns void]
  6290. printf(|string format, [mixed args])
  6291. [quoted_printable_decode | Convert a quoted-printable string to an 8 bit string, returns string]
  6292. quoted_printable_decode(|string str)
  6293. [quotemeta | Quote meta characters, returns string]
  6294. quotemeta(|string str)
  6295. [rtrim | Strip whitespace from the end of a string, returns string]
  6296. rtrim(|string str, [string charlist])
  6297. [setlocale | Set locale information, returns string]
  6298. setlocale(|mixed category, string locale, [string ...])
  6299. [sha1_file | Calculate the sha1 hash of a file, returns string]
  6300. sha1_file(|string filename, [bool raw_output])
  6301. [sha1 | Calculate the sha1 hash of a string, returns string]
  6302. sha1(|string str, [bool raw_output])
  6303. [similar_text | Calculate the similarity between two strings, returns int]
  6304. similar_text(|string first, string second, [float percent])
  6305. [soundex | Calculate the soundex key of a string, returns string]
  6306. soundex(|string str)
  6307. [sprintf | Return a formatted string, returns string]
  6308. sprintf(|string format, [mixed args])
  6309. [sscanf | Parses input from a string according to a format, returns mixed]
  6310. sscanf(|string str, string format, [string var1])
  6311. [str_ireplace | Case-insensitive version of str_replace., returns mixed]
  6312. str_ireplace(|mixed search, mixed replace, mixed subject, [int &count])
  6313. [str_pad | Pad a string to a certain length with another string, returns string]
  6314. str_pad(|string input, int pad_length, [string pad_string], [int pad_type])
  6315. [str_repeat | Repeat a string, returns string]
  6316. str_repeat(|string input, int multiplier)
  6317. [str_replace | Replace all occurrences of the search string with the replacement string, returns mixed]
  6318. str_replace(|mixed search, mixed replace, mixed subject, [int &count])
  6319. [str_rot13 | Perform the rot13 transform on a string, returns string]
  6320. str_rot13(|string str)
  6321. [str_shuffle | Randomly shuffles a string, returns string]
  6322. str_shuffle(|string str)
  6323. [str_split | Convert a string to an array, returns array]
  6324. str_split(|string string, [int split_length])
  6325. [str_word_count | Return information about words used in a string, returns mixed]
  6326. str_word_count(|string string, [int format])
  6327. [strcasecmp | Binary safe case-insensitive string comparison, returns int]
  6328. strcasecmp(|string str1, string str2)
  6329. [strchr | Alias for strstr]
  6330. [strcmp | Binary safe string comparison, returns int]
  6331. strcmp(|string str1, string str2)
  6332. [strcoll | Locale based string comparison, returns int]
  6333. strcoll(|string str1, string str2)
  6334. [strcspn | Find length of initial segment not matching mask, returns int]
  6335. strcspn(|string str1, string str2)
  6336. [strip_tags | Strip HTML and PHP tags from a string, returns string]
  6337. strip_tags(|string str, [string allowable_tags])
  6338. [stripcslashes | Un-quote string quoted with addcslashes, returns string]
  6339. stripcslashes(|string str)
  6340. [stripos | Find position of first occurrence of a case-insensitive string, returns int]
  6341. stripos(|string haystack, string needle, [int offset])
  6342. [stripslashes | Un-quote string quoted with addslashes, returns string]
  6343. stripslashes(|string str)
  6344. [stristr | Case-insensitive strstr, returns string]
  6345. stristr(|string haystack, string needle)
  6346. [strlen | Get string length, returns int]
  6347. strlen(|string str)
  6348. [strnatcasecmp | Case insensitive string comparisons using a "natural order" algorithm, returns int]
  6349. strnatcasecmp(|string str1, string str2)
  6350. [strnatcmp | String comparisons using a "natural order" algorithm, returns int]
  6351. strnatcmp(|string str1, string str2)
  6352. [strncasecmp | Binary safe case-insensitive string comparison of the first n characters, returns int]
  6353. strncasecmp(|string str1, string str2, int len)
  6354. [strncmp | Binary safe string comparison of the first n characters, returns int]
  6355. strncmp(|string str1, string str2, int len)
  6356. [strpos | Find position of first occurrence of a string, returns int]
  6357. strpos(|string haystack, string needle, [int offset])
  6358. [strrchr | Find the last occurrence of a character in a string, returns string]
  6359. strrchr(|string haystack, char needle)
  6360. [strrev | Reverse a string, returns string]
  6361. strrev(|string string)
  6362. [strripos | Find position of last occurrence of a case-insensitive string in a string, returns int]
  6363. strripos(|string haystack, string needle)
  6364. [strrpos | Find position of last occurrence of a char in a string, returns int]
  6365. strrpos(|string haystack, string needle)
  6366. [strspn | Find length of initial segment matching mask, returns int]
  6367. strspn(|string str1, string str2)
  6368. [strstr | Find first occurrence of a string, returns string]
  6369. strstr(|string haystack, string needle)
  6370. [strtok | Tokenize string, returns string]
  6371. strtok(|string arg1, string arg2)
  6372. [strtolower | Make a string lowercase, returns string]
  6373. strtolower(|string str)
  6374. [strtoupper | Make a string uppercase, returns string]
  6375. strtoupper(|string string)
  6376. [strtr | Translate certain characters, returns string]
  6377. strtr(|string str, string from, string to)
  6378. [substr_compare | Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters, returns int]
  6379. substr_compare(|string main_str, string str, int offset, [int length], [bool case_sensitivity])
  6380. [substr_count | Count the number of substring occurrences, returns int]
  6381. substr_count(|string haystack, string needle)
  6382. [substr_replace | Replace text within a portion of a string, returns string]
  6383. substr_replace(|string string, string replacement, int start, [int length])
  6384. [substr | Return part of a string, returns string]
  6385. substr(|string string, int start, [int length])
  6386. [trim | Strip whitespace from the beginning and end of a string, returns string]
  6387. trim(|string str, [string charlist])
  6388. [ucfirst | Make a string's first character uppercase, returns string]
  6389. ucfirst(|string str)
  6390. [ucwords | Uppercase the first character of each word in a string, returns string]
  6391. ucwords(|string str)
  6392. [vprintf | Output a formatted string, returns void]
  6393. vprintf(|string format, array args)
  6394. [vsprintf | Return a formatted string, returns string]
  6395. vsprintf(|string format, array args)
  6396. [wordwrap | Wraps a string to a given number of characters using a string break character., returns string]
  6397. wordwrap(|string str, [int width], [string break], [boolean cut])
  6398. ; -----------------------------------------------------------------------------
  6399. ; Sybase - Sybase functions
  6400. ; -----------------------------------------------------------------------------
  6401. [sybase_affected_rows | Gets number of affected rows in last query, returns int]
  6402. sybase_affected_rows(|[resource link_identifier])
  6403. [sybase_close | Closes a Sybase connection, returns bool]
  6404. sybase_close(|[resource link_identifier])
  6405. [sybase_connect | Opens a Sybase server connection, returns resource]
  6406. sybase_connect(|[string servername], [string username], [string password], [string charset], [string appname])
  6407. [sybase_data_seek | Moves internal row pointer, returns bool]
  6408. sybase_data_seek(|resource result_identifier, int row_number)
  6409. [sybase_deadlock_retry_count | Sets the deadlock retry count, returns void]
  6410. sybase_deadlock_retry_count(|int retry_count)
  6411. [sybase_fetch_array | Fetch row as array, returns array]
  6412. sybase_fetch_array(|resource result)
  6413. [sybase_fetch_assoc | Fetch a result row as an associative array, returns array]
  6414. sybase_fetch_assoc(|resource result)
  6415. [sybase_fetch_field | Get field information from a result, returns object]
  6416. sybase_fetch_field(|resource result, [int field_offset])
  6417. [sybase_fetch_object | Fetch a row as an object, returns object]
  6418. sybase_fetch_object(|resource result, [mixed object])
  6419. [sybase_fetch_row | Get a result row as an enumerated array, returns array]
  6420. sybase_fetch_row(|resource result)
  6421. [sybase_field_seek | Sets field offset, returns bool]
  6422. sybase_field_seek(|resource result, int field_offset)
  6423. [sybase_free_result | Frees result memory, returns bool]
  6424. sybase_free_result(|resource result)
  6425. [sybase_get_last_message | Returns the last message from the server, returns string]
  6426. sybase_get_last_message()|
  6427. [sybase_min_client_severity | Sets minimum client severity, returns void]
  6428. sybase_min_client_severity(|int severity)
  6429. [sybase_min_error_severity | Sets minimum error severity, returns void]
  6430. sybase_min_error_severity(|int severity)
  6431. [sybase_min_message_severity | Sets minimum message severity, returns void]
  6432. sybase_min_message_severity(|int severity)
  6433. [sybase_min_server_severity | Sets minimum server severity, returns void]
  6434. sybase_min_server_severity(|int severity)
  6435. [sybase_num_fields | Gets the number of fields in a result set, returns int]
  6436. sybase_num_fields(|resource result)
  6437. [sybase_num_rows | Get number of rows in a result set, returns int]
  6438. sybase_num_rows(|resource result)
  6439. [sybase_pconnect | Open persistent Sybase connection, returns resource]
  6440. sybase_pconnect(|[string servername], [string username], [string password], [string charset], [string appname])
  6441. [sybase_query | Sends a Sybase query, returns resource]
  6442. sybase_query(|string query, resource link_identifier)
  6443. [sybase_result | Get result data, returns string]
  6444. sybase_result(|resource result, int row, mixed field)
  6445. [sybase_select_db | Selects a Sybase database, returns bool]
  6446. sybase_select_db(|string database_name, [resource link_identifier])
  6447. [sybase_set_message_handler | Sets the handler called when a server message is raised, returns bool]
  6448. sybase_set_message_handler(|callback handler)
  6449. [sybase_unbuffered_query | Send a Sybase query and do not block, returns resource]
  6450. sybase_unbuffered_query(|string query, resource link_identifier)
  6451. ; -----------------------------------------------------------------------------
  6452. ; tidy - tidy Functions
  6453. ; -----------------------------------------------------------------------------
  6454. [tidy_access_count | Returns the Number of Tidy accessibility warnings encountered for specified document., returns int]
  6455. tidy_access_count()|
  6456. [tidy_clean_repair | Execute configured cleanup and repair operations on parsed markup, returns bool]
  6457. tidy_clean_repair()|
  6458. [tidy_config_count | Returns the Number of Tidy configuration errors encountered for specified document., returns int]
  6459. tidy_config_count()|
  6460. [tidy_diagnose | Run configured diagnostics on parsed and repaired markup., returns bool]
  6461. tidy_diagnose()|
  6462. [tidy_error_count | Returns the Number of Tidy errors encountered for specified document., returns int]
  6463. tidy_error_count()|
  6464. [tidy_get_body | Returns a TidyNode Object starting from the >BODY< tag of the tidy parse tree, returns TidyNode]
  6465. tidy_get_body(|resource tidy)
  6466. [tidy_get_config | Get current Tidy configuarion, returns array]
  6467. tidy_get_config()|
  6468. [tidy_get_error_buffer | Return warnings and errors which occured parsing the specified document, returns string]
  6469. tidy_get_error_buffer(|[bool detailed])
  6470. [tidy_get_head | Returns a TidyNode Object starting from the >HEAD< tag of the tidy parse tree, returns TidyNode]
  6471. tidy_get_head()|
  6472. [tidy_get_html_ver | Get the Detected HTML version for the specified document., returns int]
  6473. tidy_get_html_ver()|
  6474. [tidy_get_html | Returns a TidyNode Object starting from the >HTML< tag of the tidy parse tree, returns TidyNode]
  6475. tidy_get_html()|
  6476. [tidy_get_output | Return a string representing the parsed tidy markup, returns string]
  6477. tidy_get_output()|
  6478. [tidy_get_release | Get release date (version) for Tidy library, returns string]
  6479. tidy_get_release()|
  6480. [tidy_get_root | Returns a TidyNode Object representing the root of the tidy parse tree, returns TidyNode]
  6481. tidy_get_root()|
  6482. [tidy_get_status | Get status of specfied document., returns int]
  6483. tidy_get_status()|
  6484. [tidy_getopt | Returns the value of the specified configuration option for the tidy document., returns mixed]
  6485. tidy_getopt(|string option)
  6486. [tidy_is_xhtml | Indicates if the document is a generic (non HTML/XHTML) XML document., returns bool]
  6487. tidy_is_xhtml()|
  6488. [tidy_load_config | Load an ASCII Tidy configuration file with the specified encoding, returns void]
  6489. tidy_load_config(|string filename, string encoding)
  6490. [tidy_parse_file | Parse markup in file or URI, returns bool]
  6491. tidy_parse_file(|string file, [bool use_include_path])
  6492. [tidy_parse_string | Parse a document stored in a string, returns bool]
  6493. tidy_parse_string(|string input)
  6494. [tidy_repair_file | Repair a file using an optionally provided configuration file, returns bool]
  6495. tidy_repair_file(|string filename, [string config_file], [bool use_include_path])
  6496. [tidy_repair_string | Repair a string using an optionally provided configuration file, returns bool]
  6497. tidy_repair_string(|string data, [string config_file])
  6498. [tidy_reset_config | Restore Tidy configuration to default values, returns string]
  6499. tidy_reset_config()|
  6500. [tidy_save_config | Save current settings to named file. Only non-default values are written., returns bool]
  6501. tidy_save_config(|string filename)
  6502. [tidy_set_encoding | Set the input/output character encoding for parsing markup. Values include: ascii, latin1, raw, utf8, iso2022, mac, win1252, utf16le, utf16be, utf16, big5 and shiftjis., returns bool]
  6503. tidy_set_encoding(|string encoding)
  6504. [tidy_setopt | Updates the configuration settings for the specified tidy document., returns bool]
  6505. tidy_setopt(|string option, mixed newvalue)
  6506. [tidy_warning_count | Returns the Number of Tidy warnings encountered for specified document., returns int]
  6507. tidy_warning_count()|
  6508. ; -----------------------------------------------------------------------------
  6509. ; Tokenizer - Tokenizer functions
  6510. ; -----------------------------------------------------------------------------
  6511. [token_get_all | Split given source into PHP tokens, returns array]
  6512. token_get_all(|string source)
  6513. [token_name | Get the symbolic name of a given PHP token, returns string]
  6514. token_name(|int token)
  6515. ; -----------------------------------------------------------------------------
  6516. ; URLs - URL Functions
  6517. ; -----------------------------------------------------------------------------
  6518. [base64_decode | Decodes data encoded with MIME base64, returns string]
  6519. base64_decode(|string encoded_data)
  6520. [base64_encode | Encodes data with MIME base64, returns string]
  6521. base64_encode(|string data)
  6522. [get_meta_tags | Extracts all meta tag content attributes from a file and returns an array, returns array]
  6523. get_meta_tags(|string filename, [int use_include_path])
  6524. [http_build_query | Generate url-encoded query string, returns string]
  6525. http_build_query(|array formdata, [string numeric_prefix])
  6526. [parse_url | Parse a URL and return its components, returns array]
  6527. parse_url(|string url)
  6528. [rawurldecode | Decode URL-encoded strings, returns string]
  6529. rawurldecode(|string str)
  6530. [rawurlencode | URL-encode according to RFC 1738, returns string]
  6531. rawurlencode(|string str)
  6532. [urldecode | Decodes URL-encoded string, returns string]
  6533. urldecode(|string str)
  6534. [urlencode | URL-encodes string, returns string]
  6535. urlencode(|string str)
  6536. ; -----------------------------------------------------------------------------
  6537. ; Variables - Variable Functions
  6538. ; -----------------------------------------------------------------------------
  6539. [doubleval | Alias of floatval]
  6540. [empty | Determine whether a variable is empty, returns bool]
  6541. empty(|mixed var)
  6542. [floatval | Get float value of a variable, returns float]
  6543. floatval(|mixed var)
  6544. [get_defined_vars | Returns an array of all defined variables, returns array]
  6545. get_defined_vars()|
  6546. [get_resource_type | Returns the resource type, returns string]
  6547. get_resource_type(|resource handle)
  6548. [gettype | Get the type of a variable, returns string]
  6549. gettype(|mixed var)
  6550. [import_request_variables | Import GET/POST/Cookie variables into the global scope, returns bool]
  6551. import_request_variables(|string types, [string prefix])
  6552. [intval | Get integer value of a variable, returns int]
  6553. intval(|mixed var, [int base])
  6554. [is_array | Finds whether a variable is an array, returns bool]
  6555. is_array(|mixed var)
  6556. [is_bool | Finds out whether a variable is a boolean, returns bool]
  6557. is_bool(|mixed var)
  6558. [is_callable | Verify that the contents of a variable can be called as a function, returns bool]
  6559. is_callable(|mixed var, [bool syntax_only], [string callable_name])
  6560. [is_double | Alias of is_float]
  6561. [is_float | Finds whether a variable is a float, returns bool]
  6562. is_float(|mixed var)
  6563. [is_int | Find whether a variable is an integer, returns bool]
  6564. is_int(|mixed var)
  6565. [is_integer | Alias of is_int]
  6566. [is_long | Alias of is_int]
  6567. [is_null | Finds whether a variable is NULL, returns bool]
  6568. is_null(|mixed var)
  6569. [is_numeric | Finds whether a variable is a number or a numeric string, returns bool]
  6570. is_numeric(|mixed var)
  6571. [is_object | Finds whether a variable is an object, returns bool]
  6572. is_object(|mixed var)
  6573. [is_real | Alias of is_float]
  6574. [is_resource | Finds whether a variable is a resource, returns bool]
  6575. is_resource(|mixed var)
  6576. [is_scalar | Finds whether a variable is a scalar, returns bool]
  6577. is_scalar(|mixed var)
  6578. [is_string | Finds whether a variable is a string, returns bool]
  6579. is_string(|mixed var)
  6580. [isset | Determine whether a variable is set, returns bool]
  6581. isset(|mixed var, [mixed var], [ ...])
  6582. [print_r | Prints human-readable information about a variable, returns bool]
  6583. print_r(|mixed expression, [bool return])
  6584. [serialize | Generates a storable representation of a value, returns string]
  6585. serialize(|mixed value)
  6586. [settype | Set the type of a variable, returns bool]
  6587. settype(|mixed var, string type)
  6588. [strval | Get string value of a variable, returns string]
  6589. strval(|mixed var)
  6590. [unserialize | Creates a PHP value from a stored representation, returns mixed]
  6591. unserialize(|string str, [string callback])
  6592. [unset | Unset a given variable, returns void]
  6593. unset(|mixed var, [mixed var], [ ...])
  6594. [var_dump | Dumps information about a variable, returns void]
  6595. var_dump(|mixed expression, [mixed expression], [ ...])
  6596. [var_export | Outputs or returns a string representation of a variable, returns mixed]
  6597. var_export(|mixed expression, [bool return])
  6598. ; -----------------------------------------------------------------------------
  6599. ; vpopmail - vpopmail functions
  6600. ; -----------------------------------------------------------------------------
  6601. [vpopmail_add_alias_domain_ex | Add alias to an existing virtual domain, returns bool]
  6602. vpopmail_add_alias_domain_ex(|string olddomain, string newdomain)
  6603. [vpopmail_add_alias_domain | Add an alias for a virtual domain, returns bool]
  6604. vpopmail_add_alias_domain(|string domain, string aliasdomain)
  6605. [vpopmail_add_domain_ex | Add a new virtual domain, returns bool]
  6606. vpopmail_add_domain_ex(|string domain, string passwd, [string quota], [string bounce], [bool apop])
  6607. [vpopmail_add_domain | Add a new virtual domain, returns bool]
  6608. vpopmail_add_domain(|string domain, string dir, int uid, int gid)
  6609. [vpopmail_add_user | Add a new user to the specified virtual domain, returns bool]
  6610. vpopmail_add_user(|string user, string domain, string password, [string gecos], [bool apop])
  6611. [vpopmail_alias_add | insert a virtual alias, returns bool]
  6612. vpopmail_alias_add(|string user, string domain, string alias)
  6613. [vpopmail_alias_del_domain | deletes all virtual aliases of a domain, returns bool]
  6614. vpopmail_alias_del_domain(|string domain)
  6615. [vpopmail_alias_del | deletes all virtual aliases of a user, returns bool]
  6616. vpopmail_alias_del(|string user, string domain)
  6617. [vpopmail_alias_get_all | get all lines of an alias for a domain, returns array]
  6618. vpopmail_alias_get_all(|string domain)
  6619. [vpopmail_alias_get | get all lines of an alias for a domain, returns array]
  6620. vpopmail_alias_get(|string alias, string domain)
  6621. [vpopmail_auth_user | Attempt to validate a username/domain/password. Returns true/false, returns bool]
  6622. vpopmail_auth_user(|string user, string domain, string password, [string apop])
  6623. [vpopmail_del_domain_ex | Delete a virtual domain, returns bool]
  6624. vpopmail_del_domain_ex(|string domain)
  6625. [vpopmail_del_domain | Delete a virtual domain, returns bool]
  6626. vpopmail_del_domain(|string domain)
  6627. [vpopmail_del_user | Delete a user from a virtual domain, returns bool]
  6628. vpopmail_del_user(|string user, string domain)
  6629. [vpopmail_error | Get text message for last vpopmail error. Returns string, returns string]
  6630. vpopmail_error()|
  6631. [vpopmail_passwd | Change a virtual user's password, returns bool]
  6632. vpopmail_passwd(|string user, string domain, string password)
  6633. [vpopmail_set_user_quota | Sets a virtual user's quota, returns bool]
  6634. vpopmail_set_user_quota(|string user, string domain, string quota)
  6635. ; -----------------------------------------------------------------------------
  6636. ; W32api - W32api functions
  6637. ; -----------------------------------------------------------------------------
  6638. [w32api_deftype | Defines a type for use with other w32api_functions, returns bool]
  6639. w32api_deftype(|string typename, string member1_type, string member1_name, [string ...], [string ...])
  6640. [w32api_init_dtype | Creates an instance of the data type typename and fills it with the values passed, returns resource]
  6641. w32api_init_dtype(|string typename, mixed value, [mixed ...])
  6642. [w32api_invoke_function | Invokes function funcname with the arguments passed after the function name, returns mixed]
  6643. w32api_invoke_function(|string funcname, mixed argument, [mixed ...])
  6644. [w32api_register_function | Registers function function_name from library with PHP, returns bool]
  6645. w32api_register_function(|string library, string function_name, string return_type)
  6646. [w32api_set_call_method | Sets the calling method used, returns void]
  6647. w32api_set_call_method(|int method)
  6648. ; -----------------------------------------------------------------------------
  6649. ; WDDX - WDDX Functions
  6650. ; -----------------------------------------------------------------------------
  6651. [wddx_add_vars | Add variables to a WDDX packet with the specified ID, returns bool]
  6652. wddx_add_vars(|int packet_id, mixed name_var, [mixed ...])
  6653. [wddx_deserialize | Deserializes a WDDX packet, returns mixed]
  6654. wddx_deserialize(|string packet)
  6655. [wddx_packet_end | Ends a WDDX packet with the specified ID, returns string]
  6656. wddx_packet_end(|int packet_id)
  6657. [wddx_packet_start | Starts a new WDDX packet with structure inside it, returns int]
  6658. wddx_packet_start(|[string comment])
  6659. [wddx_serialize_value | Serialize a single value into a WDDX packet, returns string]
  6660. wddx_serialize_value(|mixed var, [string comment])
  6661. [wddx_serialize_vars | Serialize variables into a WDDX packet, returns string]
  6662. wddx_serialize_vars(|mixed var_name, [mixed ...])
  6663. ; -----------------------------------------------------------------------------
  6664. ; XML - XML parser functions
  6665. ; -----------------------------------------------------------------------------
  6666. [utf8_decode | Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1., returns string]
  6667. utf8_decode(|string data)
  6668. [utf8_encode | encodes an ISO-8859-1 string to UTF-8, returns string]
  6669. utf8_encode(|string data)
  6670. [xml_error_string | get XML parser error string, returns string]
  6671. xml_error_string(|int code)
  6672. [xml_get_current_byte_index | get current byte index for an XML parser, returns int]
  6673. xml_get_current_byte_index(|resource parser)
  6674. [xml_get_current_column_number | Get current column number for an XML parser, returns int]
  6675. xml_get_current_column_number(|resource parser)
  6676. [xml_get_current_line_number | get current line number for an XML parser, returns int]
  6677. xml_get_current_line_number(|resource parser)
  6678. [xml_get_error_code | get XML parser error code, returns int]
  6679. xml_get_error_code(|resource parser)
  6680. [xml_parse_into_struct | Parse XML data into an array structure, returns int]
  6681. xml_parse_into_struct(|resource parser, string data, array &values, [array &index])
  6682. [xml_parse | start parsing an XML document, returns bool]
  6683. xml_parse(|resource parser, string data, [bool is_final])
  6684. [xml_parser_create_ns | Create an XML parser with namespace support, returns resource]
  6685. xml_parser_create_ns(|[string encoding], [string separator])
  6686. [xml_parser_create | create an XML parser, returns resource]
  6687. xml_parser_create(|[string encoding])
  6688. [xml_parser_free | Free an XML parser, returns bool]
  6689. xml_parser_free(|resource parser)
  6690. [xml_parser_get_option | get options from an XML parser, returns mixed]
  6691. xml_parser_get_option(|resource parser, int option)
  6692. [xml_parser_set_option | set options in an XML parser, returns bool]
  6693. xml_parser_set_option(|resource parser, int option, mixed value)
  6694. [xml_set_character_data_handler | set up character data handler, returns bool]
  6695. xml_set_character_data_handler(|resource parser, callback handler)
  6696. [xml_set_default_handler | set up default handler, returns bool]
  6697. xml_set_default_handler(|resource parser, callback handler)
  6698. [xml_set_element_handler | set up start and end element handlers, returns bool]
  6699. xml_set_element_handler(|resource parser, callback start_element_handler, callback end_element_handler)
  6700. [xml_set_end_namespace_decl_handler | Set up character data handler, returns bool]
  6701. xml_set_end_namespace_decl_handler(|resource pind, callback handler)
  6702. [xml_set_external_entity_ref_handler | set up external entity reference handler, returns bool]
  6703. xml_set_external_entity_ref_handler(|resource parser, callback handler)
  6704. [xml_set_notation_decl_handler | set up notation declaration handler, returns bool]
  6705. xml_set_notation_decl_handler(|resource parser, callback handler)
  6706. [xml_set_object | Use XML Parser within an object, returns void]
  6707. xml_set_object(|resource parser, object object)
  6708. [xml_set_processing_instruction_handler | Set up processing instruction (PI) handler, returns bool]
  6709. xml_set_processing_instruction_handler(|resource parser, callback handler)
  6710. [xml_set_start_namespace_decl_handler | Set up character data handler, returns bool]
  6711. xml_set_start_namespace_decl_handler(|resource pind, callback hdl)
  6712. [xml_set_unparsed_entity_decl_handler | Set up unparsed entity declaration handler, returns bool]
  6713. xml_set_unparsed_entity_decl_handler(|resource parser, callback handler)
  6714. ; -----------------------------------------------------------------------------
  6715. ; XML-RPC - XML-RPC functions
  6716. ; -----------------------------------------------------------------------------
  6717. [xmlrpc_decode_request | Decodes XML into native PHP types, returns array]
  6718. xmlrpc_decode_request(|string xml, string &method, [string encoding])
  6719. [xmlrpc_decode | Decodes XML into native PHP types, returns array]
  6720. xmlrpc_decode(|string xml, [string encoding])
  6721. [xmlrpc_encode_request | Generates XML for a method request, returns string]
  6722. xmlrpc_encode_request(|string method, mixed params)
  6723. [xmlrpc_encode | Generates XML for a PHP value, returns string]
  6724. xmlrpc_encode(|mixed value)
  6725. [xmlrpc_get_type | Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings, returns string]
  6726. xmlrpc_get_type(|mixed value)
  6727. [xmlrpc_parse_method_descriptions | Decodes XML into a list of method descriptions, returns array]
  6728. xmlrpc_parse_method_descriptions(|string xml)
  6729. [xmlrpc_server_add_introspection_data | Adds introspection documentation, returns int]
  6730. xmlrpc_server_add_introspection_data(|resource server, array desc)
  6731. [xmlrpc_server_call_method | Parses XML requests and call methods, returns mixed]
  6732. xmlrpc_server_call_method(|resource server, string xml, mixed user_data, [array output_options])
  6733. [xmlrpc_server_create | Creates an xmlrpc server, returns resource]
  6734. xmlrpc_server_create()|
  6735. [xmlrpc_server_destroy | Destroys server resources, returns int]
  6736. xmlrpc_server_destroy(|resource server)
  6737. [xmlrpc_server_register_introspection_callback | Register a PHP function to generate documentation, returns bool]
  6738. xmlrpc_server_register_introspection_callback(|resource server, string function)
  6739. [xmlrpc_server_register_method | Register a PHP function to resource method matching method_name, returns bool]
  6740. xmlrpc_server_register_method(|resource server, string method_name, string function)
  6741. [xmlrpc_set_type | Sets xmlrpc type, base64 or datetime, for a PHP string value, returns bool]
  6742. xmlrpc_set_type(|string value, string type)
  6743. ; -----------------------------------------------------------------------------
  6744. ; XSLT - XSLT functions
  6745. ; -----------------------------------------------------------------------------
  6746. [xslt_create | Create a new XSLT processor, returns resource]
  6747. xslt_create()|
  6748. [xslt_errno | Returns an error number, returns int]
  6749. xslt_errno(|resource xh)
  6750. [xslt_error | Returns an error string, returns mixed]
  6751. xslt_error(|resource xh)
  6752. [xslt_free | Free XSLT processor, returns void]
  6753. xslt_free(|resource xh)
  6754. [xslt_process | Perform an XSLT transformation, returns mixed]
  6755. xslt_process(|resource xh, string xmlcontainer, string xslcontainer, [string resultcontainer], [array arguments], [array parameters])
  6756. [xslt_set_base | Set the base URI for all XSLT transformations, returns void]
  6757. xslt_set_base(|resource xh, string uri)
  6758. [xslt_set_encoding | Set the encoding for the parsing of XML documents, returns void]
  6759. xslt_set_encoding(|resource xh, string encoding)
  6760. [xslt_set_error_handler | Set an error handler for a XSLT processor, returns void]
  6761. xslt_set_error_handler(|resource xh, mixed handler)
  6762. [xslt_set_log | Set the log file to write log messages to, returns void]
  6763. xslt_set_log(|resource xh, mixed log)
  6764. [xslt_set_sax_handler | Set SAX handlers for a XSLT processor, returns void]
  6765. xslt_set_sax_handler(|resource xh, array handlers)
  6766. [xslt_set_sax_handlers | Set the SAX handlers to be called when the XML document gets processed, returns void]
  6767. xslt_set_sax_handlers(|resource processor, array handlers)
  6768. [xslt_set_scheme_handler | Set Scheme handlers for a XSLT processor, returns void]
  6769. xslt_set_scheme_handler(|resource xh, array handlers)
  6770. [xslt_set_scheme_handlers | Set the scheme handlers for the XSLT processor, returns void]
  6771. xslt_set_scheme_handlers(|resource processor, array handlers)
  6772. ; -----------------------------------------------------------------------------
  6773. ; YAZ - YAZ functions
  6774. ; -----------------------------------------------------------------------------
  6775. [yaz_addinfo | Returns additional error information, returns string]
  6776. yaz_addinfo(|resource id)
  6777. [yaz_ccl_conf | Configure CCL parser, returns int]
  6778. yaz_ccl_conf(|resource id, array config)
  6779. [yaz_ccl_parse | Invoke CCL Parser, returns bool]
  6780. yaz_ccl_parse(|resource id, string query, array & result)
  6781. [yaz_close | Close YAZ connection, returns bool]
  6782. yaz_close(|resource id)
  6783. [yaz_connect | Prepares for a connection to a Z39.50 target (server)., returns resource]
  6784. yaz_connect(|string zurl, [mixed options])
  6785. [yaz_database | Specifies the databases within a session, returns bool]
  6786. yaz_database(|resource id, string databases)
  6787. [yaz_element | Specifies Element-Set Name for retrieval, returns bool]
  6788. yaz_element(|resource id, string elementset)
  6789. [yaz_errno | Returns error number, returns int]
  6790. yaz_errno(|resource id)
  6791. [yaz_error | Returns error description, returns string]
  6792. yaz_error(|resource id)
  6793. [yaz_get_option | Returns value of option for connection, returns string]
  6794. yaz_get_option(|resource id, string name)
  6795. [yaz_hits | Returns number of hits for last search, returns int]
  6796. yaz_hits(|resource id)
  6797. [yaz_itemorder | Prepares for Z39.50 Item Order with an ILL-Request package, returns int]
  6798. yaz_itemorder(|resource id, array args)
  6799. [yaz_present | Prepares for retrieval (Z39.50 present)., returns bool]
  6800. yaz_present(|resource id)
  6801. [yaz_range | Specifies the maximum number of records to retrieve, returns bool]
  6802. yaz_range(|resource id, int start, int number)
  6803. [yaz_record | Returns a record, returns string]
  6804. yaz_record(|resource id, int pos, string type)
  6805. [yaz_scan_result | Returns Scan Response result, returns array]
  6806. yaz_scan_result(|resource id, [array & result])
  6807. [yaz_scan | Prepares for a scan, returns int]
  6808. yaz_scan(|resource id, string type, string startterm, [array flags])
  6809. [yaz_schema | Specifies schema for retrieval., returns int]
  6810. yaz_schema(|resource id, string schema)
  6811. [yaz_search | Prepares for a search, returns int]
  6812. yaz_search(|resource id, string type, string query)
  6813. [yaz_set_option | Sets one or more options for connection, returns string]
  6814. yaz_set_option(|resource id, string name, string value)
  6815. [yaz_sort | Sets sorting criteria, returns int]
  6816. yaz_sort(|resource id, string criteria)
  6817. [yaz_syntax | Specifies the preferred record syntax for retrieval., returns int]
  6818. yaz_syntax(|resource id, string syntax)
  6819. [yaz_wait | Wait for Z39.50 requests to complete, returns int]
  6820. yaz_wait(|[array options])
  6821. ; -----------------------------------------------------------------------------
  6822. ; YP/NIS - YP/NIS Functions
  6823. ; -----------------------------------------------------------------------------
  6824. [yp_all | Traverse the map and call a function on each entry, returns void]
  6825. yp_all(|string domain, string map, string callback)
  6826. [yp_cat | Return an array containing the entire map, returns array]
  6827. yp_cat(|string domain, string map)
  6828. [yp_err_string | Returns the error string associated with the given error code, returns string]
  6829. yp_err_string(|int errorcode)
  6830. [yp_errno | Returns the error code of the previous operation, returns int]
  6831. yp_errno()|
  6832. [yp_first | Returns the first key-value pair from the named map, returns array]
  6833. yp_first(|string domain, string map)
  6834. [yp_get_default_domain | Fetches the machine's default NIS domain, returns int]
  6835. yp_get_default_domain()|
  6836. [yp_master | Returns the machine name of the master NIS server for a map, returns string]
  6837. yp_master(|string domain, string map)
  6838. [yp_match | Returns the matched line, returns string]
  6839. yp_match(|string domain, string map, string key)
  6840. [yp_next | Returns the next key-value pair in the named map., returns array]
  6841. yp_next(|string domain, string map, string key)
  6842. [yp_order | Returns the order number for a map, returns int]
  6843. yp_order(|string domain, string map)
  6844. ; -----------------------------------------------------------------------------
  6845. ; Zip - Zip File Functions (Read Only Access)
  6846. ; -----------------------------------------------------------------------------
  6847. [zip_close | Close a Zip File Archive, returns void]
  6848. zip_close(|resource zip)
  6849. [zip_entry_close | Close a Directory Entry, returns void]
  6850. zip_entry_close(|resource zip_entry)
  6851. [zip_entry_compressedsize | Retrieve the Compressed Size of a Directory Entry, returns int]
  6852. zip_entry_compressedsize(|resource zip_entry)
  6853. [zip_entry_compressionmethod | Retrieve the Compression Method of a Directory Entry, returns string]
  6854. zip_entry_compressionmethod(|resource zip_entry)
  6855. [zip_entry_filesize | Retrieve the Actual File Size of a Directory Entry, returns int]
  6856. zip_entry_filesize(|resource zip_entry)
  6857. [zip_entry_name | Retrieve the Name of a Directory Entry, returns string]
  6858. zip_entry_name(|resource zip_entry)
  6859. [zip_entry_open | Open a Directory Entry for Reading, returns bool]
  6860. zip_entry_open(|resource zip, resource zip_entry, [string mode])
  6861. [zip_entry_read | Read From an Open Directory Entry, returns string]
  6862. zip_entry_read(|resource zip_entry, [int length])
  6863. [zip_open | Open a Zip File Archive, returns resource]
  6864. zip_open(|string filename)
  6865. [zip_read | Read Next Entry in a Zip File Archive, returns resource]
  6866. zip_read(|resource zip)
  6867. ; -----------------------------------------------------------------------------
  6868. ; Zlib - Zlib Compression Functions
  6869. ; -----------------------------------------------------------------------------
  6870. [gzclose | Close an open gz-file pointer, returns int]
  6871. gzclose(|resource zp)
  6872. [gzcompress | Compress a string, returns string]
  6873. gzcompress(|string data, [int level])
  6874. [gzdeflate | Deflate a string, returns string]
  6875. gzdeflate(|string data, [int level])
  6876. [gzencode | Create a gzip compressed string, returns string]
  6877. gzencode(|string data, [int level], [int encoding_mode])
  6878. [gzeof | Test for end-of-file on a gz-file pointer, returns int]
  6879. gzeof(|resource zp)
  6880. [gzfile | Read entire gz-file into an array, returns array]
  6881. gzfile(|string filename, [int use_include_path])
  6882. [gzgetc | Get character from gz-file pointer, returns string]
  6883. gzgetc(|resource zp)
  6884. [gzgets | Get line from file pointer, returns string]
  6885. gzgets(|resource zp, int length)
  6886. [gzgetss | Get line from gz-file pointer and strip HTML tags, returns string]
  6887. gzgetss(|resource zp, int length, [string allowable_tags])
  6888. [gzinflate | Inflate a deflated string, returns string]
  6889. gzinflate(|string data, [int length])
  6890. [gzopen | Open gz-file, returns resource]
  6891. gzopen(|string filename, string mode, [int use_include_path])
  6892. [gzpassthru | Output all remaining data on a gz-file pointer, returns int]
  6893. gzpassthru(|resource zp)
  6894. [gzputs | Alias for gzwrite]
  6895. [gzread | Binary-safe gz-file read, returns string]
  6896. gzread(|resource zp, int length)
  6897. [gzrewind | Rewind the position of a gz-file pointer, returns int]
  6898. gzrewind(|resource zp)
  6899. [gzseek | Seek on a gz-file pointer, returns int]
  6900. gzseek(|resource zp, int offset)
  6901. [gztell | Tell gz-file pointer read/write position, returns int]
  6902. gztell(|resource zp)
  6903. [gzuncompress | Uncompress a deflated string, returns string]
  6904. gzuncompress(|string data, [int length])
  6905. [gzwrite | Binary-safe gz-file write, returns int]
  6906. gzwrite(|resource zp, string string, [int length])
  6907. [readgzfile | Output a gz-file, returns int]
  6908. readgzfile(|string filename, [int use_include_path])
  6909. [zlib_get_coding_type | Returns the coding type used for output compression, returns string]
  6910. zlib_get_coding_type()|
  6911. ;
  6912. ;
  6913. ; -----------------------------------------------------------------------------
  6914. ; Tree content
  6915. ; -----------------------------------------------------------------------------
  6916. [Tree content]
  6917. Apache - Apache-specific Functions
  6918.  apache_child_terminate
  6919.  apache_get_version
  6920.  apache_lookup_uri
  6921.  apache_note
  6922.  apache_request_headers
  6923.  apache_response_headers
  6924.  apache_setenv
  6925.  ascii2ebcdic
  6926.  ebcdic2ascii
  6927.  getallheaders
  6928.  virtual
  6929. Arrays - Array Functions
  6930.  array_change_key_case
  6931.  array_chunk
  6932.  array_combine
  6933.  array_count_values
  6934.  array_diff_assoc
  6935.  array_diff_uassoc
  6936.  array_diff
  6937.  array_fill
  6938.  array_filter
  6939.  array_flip
  6940.  array_intersect_assoc
  6941.  array_intersect
  6942.  array_key_exists
  6943.  array_keys
  6944.  array_map
  6945.  array_merge_recursive
  6946.  array_merge
  6947.  array_multisort
  6948.  array_pad
  6949.  array_pop
  6950.  array_push
  6951.  array_rand
  6952.  array_reduce
  6953.  array_reverse
  6954.  array_search
  6955.  array_shift
  6956.  array_slice
  6957.  array_splice
  6958.  array_sum
  6959.  array_udiff_assoc
  6960.  array_udiff_uassoc
  6961.  array_udiff
  6962.  array_unique
  6963.  array_unshift
  6964.  array_values
  6965.  array_walk
  6966.  array
  6967.  arsort
  6968.  asort
  6969.  compact
  6970.  count
  6971.  current
  6972.  each
  6973.  end
  6974.  extract
  6975.  in_array
  6976.  key
  6977.  krsort
  6978.  ksort
  6979.  list
  6980.  natcasesort
  6981.  natsort
  6982.  next
  6983.  pos
  6984.  prev
  6985.  range
  6986.  reset
  6987.  rsort
  6988.  shuffle
  6989.  sizeof
  6990.  sort
  6991.  uasort
  6992.  uksort
  6993.  usort
  6994. Aspell - Aspell functions [deprecated]
  6995.  aspell_check_raw
  6996.  aspell_check
  6997.  aspell_new
  6998.  aspell_suggest
  6999. BC math - BCMath Arbitrary Precision Mathematics Functions
  7000.  bcadd
  7001.  bccomp
  7002.  bcdiv
  7003.  bcmod
  7004.  bcmul
  7005.  bcpow
  7006.  bcpowmod
  7007.  bcscale
  7008.  bcsqrt
  7009.  bcsub
  7010. Bzip2 - Bzip2 Compression Functions
  7011.  bzclose
  7012.  bzcompress
  7013.  bzdecompress
  7014.  bzerrno
  7015.  bzerror
  7016.  bzerrstr
  7017.  bzflush
  7018.  bzopen
  7019.  bzread
  7020.  bzwrite
  7021. Calendar - Calendar functions
  7022.  cal_days_in_month
  7023.  cal_from_jd
  7024.  cal_info
  7025.  cal_to_jd
  7026.  easter_date
  7027.  easter_days
  7028.  FrenchToJD
  7029.  GregorianToJD
  7030.  JDDayOfWeek
  7031.  JDMonthName
  7032.  JDToFrench
  7033.  JDToGregorian
  7034.  jdtojewish
  7035.  JDToJulian
  7036.  jdtounix
  7037.  JewishToJD
  7038.  JulianToJD
  7039.  unixtojd
  7040. CCVS - CCVS API Functions
  7041.  ccvs_add
  7042.  ccvs_auth
  7043.  ccvs_command
  7044.  ccvs_count
  7045.  ccvs_delete
  7046.  ccvs_done
  7047.  ccvs_init
  7048.  ccvs_lookup
  7049.  ccvs_new
  7050.  ccvs_report
  7051.  ccvs_return
  7052.  ccvs_reverse
  7053.  ccvs_sale
  7054.  ccvs_status
  7055.  ccvs_textvalue
  7056.  ccvs_void
  7057. COM - COM support functions for Windows
  7058.  COM
  7059.  VARIANT
  7060.  com_addref
  7061.  com_get
  7062.  com_invoke
  7063.  com_isenum
  7064.  com_load_typelib
  7065.  com_load
  7066.  com_propget
  7067.  com_propput
  7068.  com_propset
  7069.  com_release
  7070.  com_set
  7071. Classes/Objects - Class/Object Functions
  7072.  call_user_method_array
  7073.  call_user_method
  7074.  class_exists
  7075.  get_class_methods
  7076.  get_class_vars
  7077.  get_class
  7078.  get_declared_classes
  7079.  get_object_vars
  7080.  get_parent_class
  7081.  is_a
  7082.  is_subclass_of
  7083.  method_exists
  7084. ClibPDF - ClibPDF functions
  7085.  cpdf_add_annotation
  7086.  cpdf_add_outline
  7087.  cpdf_arc
  7088.  cpdf_begin_text
  7089.  cpdf_circle
  7090.  cpdf_clip
  7091.  cpdf_close
  7092.  cpdf_closepath_fill_stroke
  7093.  cpdf_closepath_stroke
  7094.  cpdf_closepath
  7095.  cpdf_continue_text
  7096.  cpdf_curveto
  7097.  cpdf_end_text
  7098.  cpdf_fill_stroke
  7099.  cpdf_fill
  7100.  cpdf_finalize_page
  7101.  cpdf_finalize
  7102.  cpdf_global_set_document_limits
  7103.  cpdf_import_jpeg
  7104.  cpdf_lineto
  7105.  cpdf_moveto
  7106.  cpdf_newpath
  7107.  cpdf_open
  7108.  cpdf_output_buffer
  7109.  cpdf_page_init
  7110.  cpdf_place_inline_image
  7111.  cpdf_rect
  7112.  cpdf_restore
  7113.  cpdf_rlineto
  7114.  cpdf_rmoveto
  7115.  cpdf_rotate_text
  7116.  cpdf_rotate
  7117.  cpdf_save_to_file
  7118.  cpdf_save
  7119.  cpdf_scale
  7120.  cpdf_set_action_url
  7121.  cpdf_set_char_spacing
  7122.  cpdf_set_creator
  7123.  cpdf_set_current_page
  7124.  cpdf_set_font_directories
  7125.  cpdf_set_font_map_file
  7126.  cpdf_set_font
  7127.  cpdf_set_horiz_scaling
  7128.  cpdf_set_keywords
  7129.  cpdf_set_leading
  7130.  cpdf_set_page_animation
  7131.  cpdf_set_subject
  7132.  cpdf_set_text_matrix
  7133.  cpdf_set_text_pos
  7134.  cpdf_set_text_rendering
  7135.  cpdf_set_text_rise
  7136.  cpdf_set_title
  7137.  cpdf_set_viewer_preferences
  7138.  cpdf_set_word_spacing
  7139.  cpdf_setdash
  7140.  cpdf_setflat
  7141.  cpdf_setgray_fill
  7142.  cpdf_setgray_stroke
  7143.  cpdf_setgray
  7144.  cpdf_setlinecap
  7145.  cpdf_setlinejoin
  7146.  cpdf_setlinewidth
  7147.  cpdf_setmiterlimit
  7148.  cpdf_setrgbcolor_fill
  7149.  cpdf_setrgbcolor_stroke
  7150.  cpdf_setrgbcolor
  7151.  cpdf_show_xy
  7152.  cpdf_show
  7153.  cpdf_stringwidth
  7154.  cpdf_stroke
  7155.  cpdf_text
  7156.  cpdf_translate
  7157. Crack - Crack functions
  7158.  crack_check
  7159.  crack_closedict
  7160.  crack_getlastmessage
  7161.  crack_opendict
  7162. CURL - CURL, Client URL Library Functions
  7163.  curl_close
  7164.  curl_errno
  7165.  curl_error
  7166.  curl_exec
  7167.  curl_getinfo
  7168.  curl_init
  7169.  curl_multi_add_handle
  7170.  curl_multi_close
  7171.  curl_multi_exec
  7172.  curl_multi_getcontent
  7173.  curl_multi_info_read
  7174.  curl_multi_init
  7175.  curl_multi_remove_handle
  7176.  curl_multi_select
  7177.  curl_setopt
  7178.  curl_version
  7179. Cybercash - Cybercash payment functions
  7180.  cybercash_base64_decode
  7181.  cybercash_base64_encode
  7182.  cybercash_decr
  7183.  cybercash_encr
  7184. Cyrus IMAP - Cyrus IMAP administration functions
  7185.  cyrus_authenticate
  7186.  cyrus_bind
  7187.  cyrus_close
  7188.  cyrus_connect
  7189.  cyrus_query
  7190.  cyrus_unbind
  7191. ctype - Character type functions
  7192.  ctype_alnum
  7193.  ctype_alpha
  7194.  ctype_cntrl
  7195.  ctype_digit
  7196.  ctype_graph
  7197.  ctype_lower
  7198.  ctype_print
  7199.  ctype_punct
  7200.  ctype_space
  7201.  ctype_upper
  7202.  ctype_xdigit
  7203. dba - Database (dbm-style) abstraction layer functions
  7204.  dba_close
  7205.  dba_delete
  7206.  dba_exists
  7207.  dba_fetch
  7208.  dba_firstkey
  7209.  dba_handlers
  7210.  dba_insert
  7211.  dba_key_split
  7212.  dba_list
  7213.  dba_nextkey
  7214.  dba_open
  7215.  dba_optimize
  7216.  dba_popen
  7217.  dba_replace
  7218.  dba_sync
  7219. Date/Time - Date and Time functions
  7220.  checkdate
  7221.  date
  7222.  getdate
  7223.  gettimeofday
  7224.  gmdate
  7225.  gmmktime
  7226.  gmstrftime
  7227.  localtime
  7228.  microtime
  7229.  mktime
  7230.  strftime
  7231.  strtotime
  7232.  time
  7233. dBase - dBase functions
  7234.  dbase_add_record
  7235.  dbase_close
  7236.  dbase_create
  7237.  dbase_delete_record
  7238.  dbase_get_header_info
  7239.  dbase_get_record_with_names
  7240.  dbase_get_record
  7241.  dbase_numfields
  7242.  dbase_numrecords
  7243.  dbase_open
  7244.  dbase_pack
  7245.  dbase_replace_record
  7246. DBM - DBM Functions [deprecated]
  7247.  dblist
  7248.  dbmclose
  7249.  dbmdelete
  7250.  dbmexists
  7251.  dbmfetch
  7252.  dbmfirstkey
  7253.  dbminsert
  7254.  dbmnextkey
  7255.  dbmopen
  7256.  dbmreplace
  7257. dbx - dbx functions
  7258.  dbx_close
  7259.  dbx_compare
  7260.  dbx_connect
  7261.  dbx_error
  7262.  dbx_escape_string
  7263.  dbx_fetch_row
  7264.  dbx_query
  7265.  dbx_sort
  7266. DB++ - DB++ Functions
  7267.  dbplus_add
  7268.  dbplus_aql
  7269.  dbplus_chdir
  7270.  dbplus_close
  7271.  dbplus_curr
  7272.  dbplus_errcode
  7273.  dbplus_errno
  7274.  dbplus_find
  7275.  dbplus_first
  7276.  dbplus_flush
  7277.  dbplus_freealllocks
  7278.  dbplus_freelock
  7279.  dbplus_freerlocks
  7280.  dbplus_getlock
  7281.  dbplus_getunique
  7282.  dbplus_info
  7283.  dbplus_last
  7284.  dbplus_lockrel
  7285.  dbplus_next
  7286.  dbplus_open
  7287.  dbplus_prev
  7288.  dbplus_rchperm
  7289.  dbplus_rcreate
  7290.  dbplus_rcrtexact
  7291.  dbplus_rcrtlike
  7292.  dbplus_resolve
  7293.  dbplus_restorepos
  7294.  dbplus_rkeys
  7295.  dbplus_ropen
  7296.  dbplus_rquery
  7297.  dbplus_rrename
  7298.  dbplus_rsecindex
  7299.  dbplus_runlink
  7300.  dbplus_rzap
  7301.  dbplus_savepos
  7302.  dbplus_setindex
  7303.  dbplus_setindexbynumber
  7304.  dbplus_sql
  7305.  dbplus_tcl
  7306.  dbplus_tremove
  7307.  dbplus_undo
  7308.  dbplus_undoprepare
  7309.  dbplus_unlockrel
  7310.  dbplus_unselect
  7311.  dbplus_update
  7312.  dbplus_xlockrel
  7313.  dbplus_xunlockrel
  7314. Direct IO - Direct IO functions
  7315.  dio_close
  7316.  dio_fcntl
  7317.  dio_open
  7318.  dio_read
  7319.  dio_seek
  7320.  dio_stat
  7321.  dio_tcsetattr
  7322.  dio_truncate
  7323.  dio_write
  7324. Directories - Directory functions
  7325.  chdir
  7326.  chroot
  7327.  dir
  7328.  closedir
  7329.  getcwd
  7330.  opendir
  7331.  readdir
  7332.  rewinddir
  7333.  scandir
  7334. DOM XML - DOM XML functions
  7335.  DomAttribute->name
  7336.  DomAttribute->specified
  7337.  DomAttribute->value
  7338.  DomDocument->add_root [deprecated]
  7339.  DomDocument->create_attribute
  7340.  DomDocument->create_cdata_section
  7341.  DomDocument->create_comment
  7342.  DomDocument->create_element_ns
  7343.  DomDocument->create_element
  7344.  DomDocument->create_entity_reference
  7345.  DomDocument->create_processing_instruction
  7346.  DomDocument->create_text_node
  7347.  DomDocument->doctype
  7348.  DomDocument->document_element
  7349.  DomDocument->dump_file
  7350.  DomDocument->dump_mem
  7351.  DomDocument->get_element_by_id
  7352.  DomDocument->get_elements_by_tagname
  7353.  DomDocument->html_dump_mem
  7354.  DomDocument->xinclude
  7355.  DomDocumentType->entities
  7356.  DomDocumentType->internal_subset
  7357.  DomDocumentType->name
  7358.  DomDocumentType->notations
  7359.  DomDocumentType->public_id
  7360.  DomDocumentType->system_id
  7361.  DomElement->get_attribute_node
  7362.  DomElement->get_attribute
  7363.  DomElement->get_elements_by_tagname
  7364.  DomElement->has_attribute
  7365.  DomElement->remove_attribute
  7366.  DomElement->set_attribute
  7367.  DomElement->tagname
  7368.  DomNode->add_namespace
  7369.  DomNode->append_child
  7370.  DomNode->append_sibling
  7371.  DomNode->attributes
  7372.  DomNode->child_nodes
  7373.  DomNode->clone_node
  7374.  DomNode->dump_node
  7375.  DomNode->first_child
  7376.  DomNode->get_content
  7377.  DomNode->has_attributes
  7378.  DomNode->has_child_nodes
  7379.  DomNode->insert_before
  7380.  DomNode->is_blank_node
  7381.  DomNode->last_child
  7382.  DomNode->next_sibling
  7383.  DomNode->node_name
  7384.  DomNode->node_type
  7385.  DomNode->node_value
  7386.  DomNode->owner_document
  7387.  DomNode->parent_node
  7388.  DomNode->prefix
  7389.  DomNode->previous_sibling
  7390.  DomNode->remove_child
  7391.  DomNode->replace_child
  7392.  DomNode->replace_node
  7393.  DomNode->set_content
  7394.  DomNode->set_name
  7395.  DomNode->set_namespace
  7396.  DomNode->unlink_node
  7397.  DomProcessingInstruction->data
  7398.  DomProcessingInstruction->target
  7399.  DomXsltStylesheet->process
  7400.  DomXsltStylesheet->result_dump_file
  7401.  DomXsltStylesheet->result_dump_mem
  7402.  domxml_new_doc
  7403.  domxml_open_file
  7404.  domxml_open_mem
  7405.  domxml_version
  7406.  domxml_xmltree
  7407.  domxml_xslt_stylesheet_doc
  7408.  domxml_xslt_stylesheet_file
  7409.  domxml_xslt_stylesheet
  7410.  xpath_eval_expression
  7411.  xpath_eval
  7412.  xpath_new_context
  7413.  xptr_eval
  7414.  xptr_new_context
  7415. .NET - .NET functions
  7416.  dotnet_load
  7417. Errors and Logging - Error Handling and Logging Functions
  7418.  debug_backtrace
  7419.  debug_print_backtrace
  7420.  error_log
  7421.  error_reporting
  7422.  restore_error_handler
  7423.  set_error_handler
  7424.  trigger_error
  7425.  user_error
  7426. fam - File alteration monitor functions
  7427.  fam_cancel_monitor
  7428.  fam_close
  7429.  fam_monitor_collection
  7430.  fam_monitor_directory
  7431.  fam_monitor_file
  7432.  fam_next_event
  7433.  fam_open
  7434.  fam_pending
  7435.  fam_resume_monitor
  7436.  fam_suspend_monitor
  7437. FrontBase - FrontBase Functions
  7438.  fbsql_affected_rows
  7439.  fbsql_autocommit
  7440.  fbsql_change_user
  7441.  fbsql_close
  7442.  fbsql_commit
  7443.  fbsql_connect
  7444.  fbsql_create_blob
  7445.  fbsql_create_clob
  7446.  fbsql_create_db
  7447.  fbsql_data_seek
  7448.  fbsql_database_password
  7449.  fbsql_database
  7450.  fbsql_db_query
  7451.  fbsql_db_status
  7452.  fbsql_drop_db
  7453.  fbsql_errno
  7454.  fbsql_error
  7455.  fbsql_fetch_array
  7456.  fbsql_fetch_assoc
  7457.  fbsql_fetch_field
  7458.  fbsql_fetch_lengths
  7459.  fbsql_fetch_object
  7460.  fbsql_fetch_row
  7461.  fbsql_field_flags
  7462.  fbsql_field_len
  7463.  fbsql_field_name
  7464.  fbsql_field_seek
  7465.  fbsql_field_table
  7466.  fbsql_field_type
  7467.  fbsql_free_result
  7468.  fbsql_get_autostart_info
  7469.  fbsql_hostname
  7470.  fbsql_insert_id
  7471.  fbsql_list_dbs
  7472.  fbsql_list_fields
  7473.  fbsql_list_tables
  7474.  fbsql_next_result
  7475.  fbsql_num_fields
  7476.  fbsql_num_rows
  7477.  fbsql_password
  7478.  fbsql_pconnect
  7479.  fbsql_query
  7480.  fbsql_read_blob
  7481.  fbsql_read_clob
  7482.  fbsql_result
  7483.  fbsql_rollback
  7484.  fbsql_select_db
  7485.  fbsql_set_lob_mode
  7486.  fbsql_set_transaction
  7487.  fbsql_start_db
  7488.  fbsql_stop_db
  7489.  fbsql_tablename
  7490.  fbsql_username
  7491.  fbsql_warnings
  7492. filePro - filePro functions
  7493.  filepro_fieldcount
  7494.  filepro_fieldname
  7495.  filepro_fieldtype
  7496.  filepro_fieldwidth
  7497.  filepro_retrieve
  7498.  filepro_rowcount
  7499.  filepro
  7500. Filesystem - Filesystem functions
  7501.  basename
  7502.  chgrp
  7503.  chmod
  7504.  chown
  7505.  clearstatcache
  7506.  copy
  7507.  delete
  7508.  dirname
  7509.  disk_free_space
  7510.  disk_total_space
  7511.  diskfreespace
  7512.  fclose
  7513.  feof
  7514.  fflush
  7515.  fgetc
  7516.  fgetcsv
  7517.  fgets
  7518.  fgetss
  7519.  file_exists
  7520.  file_get_contents
  7521.  file_put_contents
  7522.  file
  7523.  fileatime
  7524.  filectime
  7525.  filegroup
  7526.  fileinode
  7527.  filemtime
  7528.  fileowner
  7529.  fileperms
  7530.  filesize
  7531.  filetype
  7532.  flock
  7533.  fnmatch
  7534.  fopen
  7535.  fpassthru
  7536.  fputs
  7537.  fread
  7538.  fscanf
  7539.  fseek
  7540.  fstat
  7541.  ftell
  7542.  ftruncate
  7543.  fwrite
  7544.  glob
  7545.  is_dir
  7546.  is_executable
  7547.  is_file
  7548.  is_link
  7549.  is_readable
  7550.  is_uploaded_file
  7551.  is_writable
  7552.  is_writeable
  7553.  link
  7554.  linkinfo
  7555.  lstat
  7556.  mkdir
  7557.  move_uploaded_file
  7558.  parse_ini_file
  7559.  pathinfo
  7560.  pclose
  7561.  popen
  7562.  readfile
  7563.  readlink
  7564.  realpath
  7565.  rename
  7566.  rewind
  7567.  rmdir
  7568.  set_file_buffer
  7569.  stat
  7570.  symlink
  7571.  tempnam
  7572.  tmpfile
  7573.  touch
  7574.  umask
  7575.  unlink
  7576. FDF - Forms Data Format functions
  7577.  fdf_add_doc_javascript
  7578.  fdf_add_template
  7579.  fdf_close
  7580.  fdf_create
  7581.  fdf_enum_values
  7582.  fdf_errno
  7583.  fdf_error
  7584.  fdf_get_ap
  7585.  fdf_get_attachment
  7586.  fdf_get_encoding
  7587.  fdf_get_file
  7588.  fdf_get_flags
  7589.  fdf_get_opt
  7590.  fdf_get_status
  7591.  fdf_get_value
  7592.  fdf_get_version
  7593.  fdf_header
  7594.  fdf_next_field_name
  7595.  fdf_open_string
  7596.  fdf_open
  7597.  fdf_remove_item
  7598.  fdf_save_string
  7599.  fdf_save
  7600.  fdf_set_ap
  7601.  fdf_set_encoding
  7602.  fdf_set_file
  7603.  fdf_set_flags
  7604.  fdf_set_javascript_action
  7605.  fdf_set_opt
  7606.  fdf_set_status
  7607.  fdf_set_submit_form_action
  7608.  fdf_set_target_frame
  7609.  fdf_set_value
  7610.  fdf_set_version
  7611. FriBiDi - FriBiDi functions
  7612.  fribidi_log2vis
  7613. FTP - FTP functions
  7614.  ftp_alloc
  7615.  ftp_cdup
  7616.  ftp_chdir
  7617.  ftp_chmod
  7618.  ftp_close
  7619.  ftp_connect
  7620.  ftp_delete
  7621.  ftp_exec
  7622.  ftp_fget
  7623.  ftp_fput
  7624.  ftp_get_option
  7625.  ftp_get
  7626.  ftp_login
  7627.  ftp_mdtm
  7628.  ftp_mkdir
  7629.  ftp_nb_continue
  7630.  ftp_nb_fget
  7631.  ftp_nb_fput
  7632.  ftp_nb_get
  7633.  ftp_nb_put
  7634.  ftp_nlist
  7635.  ftp_pasv
  7636.  ftp_put
  7637.  ftp_pwd
  7638.  ftp_quit
  7639.  ftp_raw
  7640.  ftp_rawlist
  7641.  ftp_rename
  7642.  ftp_rmdir
  7643.  ftp_set_option
  7644.  ftp_site
  7645.  ftp_size
  7646.  ftp_ssl_connect
  7647.  ftp_systype
  7648. Function handling - Function Handling functions
  7649.  call_user_func_array
  7650.  call_user_func
  7651.  create_function
  7652.  func_get_arg
  7653.  func_get_args
  7654.  func_num_args
  7655.  function_exists
  7656.  get_defined_functions
  7657.  register_shutdown_function
  7658.  register_tick_function
  7659.  unregister_tick_function
  7660. gettext - Gettext
  7661.  bind_textdomain_codeset
  7662.  bindtextdomain
  7663.  dcgettext
  7664.  dcngettext
  7665.  dgettext
  7666.  dngettext
  7667.  gettext
  7668.  ngettext
  7669.  textdomain
  7670. GMP - GMP functions
  7671.  gmp_abs
  7672.  gmp_add
  7673.  gmp_and
  7674.  gmp_clrbit
  7675.  gmp_cmp
  7676.  gmp_com
  7677.  gmp_div_q
  7678.  gmp_div_qr
  7679.  gmp_div_r
  7680.  gmp_div
  7681.  gmp_divexact
  7682.  gmp_fact
  7683.  gmp_gcd
  7684.  gmp_gcdext
  7685.  gmp_hamdist
  7686.  gmp_init
  7687.  gmp_intval
  7688.  gmp_invert
  7689.  gmp_jacobi
  7690.  gmp_legendre
  7691.  gmp_mod
  7692.  gmp_mul
  7693.  gmp_neg
  7694.  gmp_or
  7695.  gmp_perfect_square
  7696.  gmp_popcount
  7697.  gmp_pow
  7698.  gmp_powm
  7699.  gmp_prob_prime
  7700.  gmp_random
  7701.  gmp_scan0
  7702.  gmp_scan1
  7703.  gmp_setbit
  7704.  gmp_sign
  7705.  gmp_sqrt
  7706.  gmp_sqrtrm
  7707.  gmp_strval
  7708.  gmp_sub
  7709.  gmp_xor
  7710. HTTP - HTTP functions
  7711.  header
  7712.  headers_list
  7713.  headers_sent
  7714.  setcookie
  7715. Hyperwave - Hyperwave functions
  7716.  hw_Array2Objrec
  7717.  hw_changeobject
  7718.  hw_Children
  7719.  hw_ChildrenObj
  7720.  hw_Close
  7721.  hw_Connect
  7722.  hw_connection_info
  7723.  hw_cp
  7724.  hw_Deleteobject
  7725.  hw_DocByAnchor
  7726.  hw_DocByAnchorObj
  7727.  hw_Document_Attributes
  7728.  hw_Document_BodyTag
  7729.  hw_Document_Content
  7730.  hw_Document_SetContent
  7731.  hw_Document_Size
  7732.  hw_dummy
  7733.  hw_EditText
  7734.  hw_Error
  7735.  hw_ErrorMsg
  7736.  hw_Free_Document
  7737.  hw_GetAnchors
  7738.  hw_GetAnchorsObj
  7739.  hw_GetAndLock
  7740.  hw_GetChildColl
  7741.  hw_GetChildCollObj
  7742.  hw_GetChildDocColl
  7743.  hw_GetChildDocCollObj
  7744.  hw_GetObject
  7745.  hw_GetObjectByQuery
  7746.  hw_GetObjectByQueryColl
  7747.  hw_GetObjectByQueryCollObj
  7748.  hw_GetObjectByQueryObj
  7749.  hw_GetParents
  7750.  hw_GetParentsObj
  7751.  hw_getrellink
  7752.  hw_GetRemote
  7753.  hw_getremotechildren
  7754.  hw_GetSrcByDestObj
  7755.  hw_GetText
  7756.  hw_getusername
  7757.  hw_Identify
  7758.  hw_InCollections
  7759.  hw_Info
  7760.  hw_InsColl
  7761.  hw_InsDoc
  7762.  hw_insertanchors
  7763.  hw_InsertDocument
  7764.  hw_InsertObject
  7765.  hw_mapid
  7766.  hw_Modifyobject
  7767.  hw_mv
  7768.  hw_New_Document
  7769.  hw_objrec2array
  7770.  hw_Output_Document
  7771.  hw_pConnect
  7772.  hw_PipeDocument
  7773.  hw_Root
  7774.  hw_setlinkroot
  7775.  hw_stat
  7776.  hw_Unlock
  7777.  hw_Who
  7778. Hyperwave API - Hyperwave API functions
  7779.  hw_api_attribute->key
  7780.  hw_api_attribute->langdepvalue
  7781.  hw_api_attribute->value
  7782.  hw_api_attribute->values
  7783.  hw_api_attribute
  7784.  hw_api->checkin
  7785.  hw_api->checkout
  7786.  hw_api->children
  7787.  hw_api_content->mimetype
  7788.  hw_api_content->read
  7789.  hw_api->content
  7790.  hw_api->copy
  7791.  hw_api->dbstat
  7792.  hw_api->dcstat
  7793.  hw_api->dstanchors
  7794.  hw_api->dstofsrcanchors
  7795.  hw_api_error->count
  7796.  hw_api_error->reason
  7797.  hw_api->find
  7798.  hw_api->ftstat
  7799.  hwapi_hgcsp
  7800.  hw_api->hwstat
  7801.  hw_api->identify
  7802.  hw_api->info
  7803.  hw_api->insert
  7804.  hw_api->insertanchor
  7805.  hw_api->insertcollection
  7806.  hw_api->insertdocument
  7807.  hw_api->link
  7808.  hw_api->lock
  7809.  hw_api->move
  7810.  hw_api_content
  7811.  hw_api_object->assign
  7812.  hw_api_object->attreditable
  7813.  hw_api_object->count
  7814.  hw_api_object->insert
  7815.  hw_api_object
  7816.  hw_api_object->remove
  7817.  hw_api_object->title
  7818.  hw_api_object->value
  7819.  hw_api->object
  7820.  hw_api->objectbyanchor
  7821.  hw_api->parents
  7822.  hw_api_reason->description
  7823.  hw_api_reason->type
  7824.  hw_api->remove
  7825.  hw_api->replace
  7826.  hw_api->setcommitedversion
  7827.  hw_api->srcanchors
  7828.  hw_api->srcsofdst
  7829.  hw_api->unlock
  7830.  hw_api->user
  7831.  hw_api->userlist
  7832. iconv - iconv functions
  7833.  iconv_get_encoding
  7834.  iconv_mime_decode
  7835.  iconv_mime_encode
  7836.  iconv_set_encoding
  7837.  iconv_strlen
  7838.  iconv_strpos
  7839.  iconv_strrpos
  7840.  iconv_substr
  7841.  iconv
  7842.  ob_iconv_handler
  7843. Image - Image functions
  7844.  exif_imagetype
  7845.  exif_read_data
  7846.  exif_thumbnail
  7847.  gd_info
  7848.  getimagesize
  7849.  image_type_to_mime_type
  7850.  image2wbmp
  7851.  imagealphablending
  7852.  imageantialias
  7853.  imagearc
  7854.  imagechar
  7855.  imagecharup
  7856.  imagecolorallocate
  7857.  imagecolorallocatealpha
  7858.  imagecolorat
  7859.  imagecolorclosest
  7860.  imagecolorclosestalpha
  7861.  imagecolorclosesthwb
  7862.  imagecolordeallocate
  7863.  imagecolorexact
  7864.  imagecolorexactalpha
  7865.  imagecolormatch
  7866.  imagecolorresolve
  7867.  imagecolorresolvealpha
  7868.  imagecolorset
  7869.  imagecolorsforindex
  7870.  imagecolorstotal
  7871.  imagecolortransparent
  7872.  imagecopy
  7873.  imagecopymerge
  7874.  imagecopymergegray
  7875.  imagecopyresampled
  7876.  imagecopyresized
  7877.  imagecreate
  7878.  imagecreatefromgd2
  7879.  imagecreatefromgd2part
  7880.  imagecreatefromgd
  7881.  imagecreatefromgif
  7882.  imagecreatefromjpeg
  7883.  imagecreatefrompng
  7884.  imagecreatefromstring
  7885.  imagecreatefromwbmp
  7886.  imagecreatefromxbm
  7887.  imagecreatefromxpm
  7888.  imagecreatetruecolor
  7889.  imagedashedline
  7890.  imagedestroy
  7891.  imageellipse
  7892.  imagefill
  7893.  imagefilledarc
  7894.  imagefilledellipse
  7895.  imagefilledpolygon
  7896.  imagefilledrectangle
  7897.  imagefilltoborder
  7898.  imagefontheight
  7899.  imagefontwidth
  7900.  imageftbbox
  7901.  imagefttext
  7902.  imagegammacorrect
  7903.  imagegd2
  7904.  imagegd
  7905.  imagegif
  7906.  imageinterlace
  7907.  imageistruecolor
  7908.  imagejpeg
  7909.  imageline
  7910.  imageloadfont
  7911.  imagepalettecopy
  7912.  imagepng
  7913.  imagepolygon
  7914.  imagepsbbox
  7915.  imagepscopyfont
  7916.  imagepsencodefont
  7917.  imagepsextendfont
  7918.  imagepsfreefont
  7919.  imagepsloadfont
  7920.  imagepsslantfont
  7921.  imagepstext
  7922.  imagerectangle
  7923.  imagerotate
  7924.  imagesavealpha
  7925.  imagesetbrush
  7926.  imagesetpixel
  7927.  imagesetstyle
  7928.  imagesetthickness
  7929.  imagesettile
  7930.  imagestring
  7931.  imagestringup
  7932.  imagesx
  7933.  imagesy
  7934.  imagetruecolortopalette
  7935.  imagettfbbox
  7936.  imagettftext
  7937.  imagetypes
  7938.  imagewbmp
  7939.  iptcembed
  7940.  iptcparse
  7941.  jpeg2wbmp
  7942.  png2wbmp
  7943.  read_exif_data
  7944. IMAP - IMAP, POP3 and NNTP functions
  7945.  imap_8bit
  7946.  imap_alerts
  7947.  imap_append
  7948.  imap_base64
  7949.  imap_binary
  7950.  imap_body
  7951.  imap_bodystruct
  7952.  imap_check
  7953.  imap_clearflag_full
  7954.  imap_close
  7955.  imap_createmailbox
  7956.  imap_delete
  7957.  imap_deletemailbox
  7958.  imap_errors
  7959.  imap_expunge
  7960.  imap_fetch_overview
  7961.  imap_fetchbody
  7962.  imap_fetchheader
  7963.  imap_fetchstructure
  7964.  imap_get_quota
  7965.  imap_get_quotaroot
  7966.  imap_getacl
  7967.  imap_getmailboxes
  7968.  imap_getsubscribed
  7969.  imap_header
  7970.  imap_headerinfo
  7971.  imap_headers
  7972.  imap_last_error
  7973.  imap_list
  7974.  imap_listmailbox
  7975.  imap_listscan
  7976.  imap_listsubscribed
  7977.  imap_lsub
  7978.  imap_mail_compose
  7979.  imap_mail_copy
  7980.  imap_mail_move
  7981.  imap_mail
  7982.  imap_mailboxmsginfo
  7983.  imap_mime_header_decode
  7984.  imap_msgno
  7985.  imap_num_msg
  7986.  imap_num_recent
  7987.  imap_open
  7988.  imap_ping
  7989.  imap_qprint
  7990.  imap_renamemailbox
  7991.  imap_reopen
  7992.  imap_rfc822_parse_adrlist
  7993.  imap_rfc822_parse_headers
  7994.  imap_rfc822_write_address
  7995.  imap_scanmailbox
  7996.  imap_search
  7997.  imap_set_quota
  7998.  imap_setacl
  7999.  imap_setflag_full
  8000.  imap_sort
  8001.  imap_status
  8002.  imap_subscribe
  8003.  imap_thread
  8004.  imap_timeout
  8005.  imap_uid
  8006.  imap_undelete
  8007.  imap_unsubscribe
  8008.  imap_utf7_decode
  8009.  imap_utf7_encode
  8010.  imap_utf8
  8011. Informix - Informix functions
  8012.  ifx_affected_rows
  8013.  ifx_blobinfile_mode
  8014.  ifx_byteasvarchar
  8015.  ifx_close
  8016.  ifx_connect
  8017.  ifx_copy_blob
  8018.  ifx_create_blob
  8019.  ifx_create_char
  8020.  ifx_do
  8021.  ifx_error
  8022.  ifx_errormsg
  8023.  ifx_fetch_row
  8024.  ifx_fieldproperties
  8025.  ifx_fieldtypes
  8026.  ifx_free_blob
  8027.  ifx_free_char
  8028.  ifx_free_result
  8029.  ifx_get_blob
  8030.  ifx_get_char
  8031.  ifx_getsqlca
  8032.  ifx_htmltbl_result
  8033.  ifx_nullformat
  8034.  ifx_num_fields
  8035.  ifx_num_rows
  8036.  ifx_pconnect
  8037.  ifx_prepare
  8038.  ifx_query
  8039.  ifx_textasvarchar
  8040.  ifx_update_blob
  8041.  ifx_update_char
  8042.  ifxus_close_slob
  8043.  ifxus_create_slob
  8044.  ifxus_free_slob
  8045.  ifxus_open_slob
  8046.  ifxus_read_slob
  8047.  ifxus_seek_slob
  8048.  ifxus_tell_slob
  8049.  ifxus_write_slob
  8050. InterBase - InterBase functions
  8051.  ibase_add_user
  8052.  ibase_affected_rows
  8053.  ibase_blob_add
  8054.  ibase_blob_cancel
  8055.  ibase_blob_close
  8056.  ibase_blob_create
  8057.  ibase_blob_echo
  8058.  ibase_blob_get
  8059.  ibase_blob_import
  8060.  ibase_blob_info
  8061.  ibase_blob_open
  8062.  ibase_close
  8063.  ibase_commit_ret
  8064.  ibase_commit
  8065.  ibase_connect
  8066.  ibase_delete_user
  8067.  ibase_drop_db
  8068.  ibase_errcode
  8069.  ibase_errmsg
  8070.  ibase_execute
  8071.  ibase_fetch_assoc
  8072.  ibase_fetch_object
  8073.  ibase_fetch_row
  8074.  ibase_field_info
  8075.  ibase_free_event_handler
  8076.  ibase_free_query
  8077.  ibase_free_result
  8078.  ibase_gen_id
  8079.  ibase_modify_user
  8080.  ibase_name_result
  8081.  ibase_num_fields
  8082.  ibase_num_params
  8083.  ibase_param_info
  8084.  ibase_pconnect
  8085.  ibase_prepare
  8086.  ibase_query
  8087.  ibase_rollback_ret
  8088.  ibase_rollback
  8089.  ibase_set_event_handler
  8090.  ibase_timefmt
  8091.  ibase_trans
  8092.  ibase_wait_event
  8093. Ingres II - Ingres II functions
  8094.  ingres_autocommit
  8095.  ingres_close
  8096.  ingres_commit
  8097.  ingres_connect
  8098.  ingres_fetch_array
  8099.  ingres_fetch_object
  8100.  ingres_fetch_row
  8101.  ingres_field_length
  8102.  ingres_field_name
  8103.  ingres_field_nullable
  8104.  ingres_field_precision
  8105.  ingres_field_scale
  8106.  ingres_field_type
  8107.  ingres_num_fields
  8108.  ingres_num_rows
  8109.  ingres_pconnect
  8110.  ingres_query
  8111.  ingres_rollback
  8112. IRC Gateway - IRC Gateway Functions
  8113.  ircg_channel_mode
  8114.  ircg_disconnect
  8115.  ircg_fetch_error_msg
  8116.  ircg_get_username
  8117.  ircg_html_encode
  8118.  ircg_ignore_add
  8119.  ircg_ignore_del
  8120.  ircg_is_conn_alive
  8121.  ircg_join
  8122.  ircg_kick
  8123.  ircg_lookup_format_messages
  8124.  ircg_msg
  8125.  ircg_nick
  8126.  ircg_nickname_escape
  8127.  ircg_nickname_unescape
  8128.  ircg_notice
  8129.  ircg_part
  8130.  ircg_pconnect
  8131.  ircg_register_format_messages
  8132.  ircg_set_current
  8133.  ircg_set_file
  8134.  ircg_set_on_die
  8135.  ircg_topic
  8136.  ircg_whois
  8137. Java - PHP / Java Integration
  8138.  java_last_exception_clear
  8139.  java_last_exception_get
  8140. LDAP - LDAP functions
  8141.  ldap_8859_to_t61
  8142.  ldap_add
  8143.  ldap_bind
  8144.  ldap_close
  8145.  ldap_compare
  8146.  ldap_connect
  8147.  ldap_count_entries
  8148.  ldap_delete
  8149.  ldap_dn2ufn
  8150.  ldap_err2str
  8151.  ldap_errno
  8152.  ldap_error
  8153.  ldap_explode_dn
  8154.  ldap_first_attribute
  8155.  ldap_first_entry
  8156.  ldap_first_reference
  8157.  ldap_free_result
  8158.  ldap_get_attributes
  8159.  ldap_get_dn
  8160.  ldap_get_entries
  8161.  ldap_get_option
  8162.  ldap_get_values_len
  8163.  ldap_get_values
  8164.  ldap_list
  8165.  ldap_mod_add
  8166.  ldap_mod_del
  8167.  ldap_mod_replace
  8168.  ldap_modify
  8169.  ldap_next_attribute
  8170.  ldap_next_entry
  8171.  ldap_next_reference
  8172.  ldap_parse_reference
  8173.  ldap_parse_result
  8174.  ldap_read
  8175.  ldap_rename
  8176.  ldap_search
  8177.  ldap_set_option
  8178.  ldap_set_rebind_proc
  8179.  ldap_sort
  8180.  ldap_start_tls
  8181.  ldap_t61_to_8859
  8182.  ldap_unbind
  8183. Mail - Mail functions
  8184.  ezmlm_hash
  8185.  mail
  8186. mailparse - mailparse functions
  8187.  mailparse_determine_best_xfer_encoding
  8188.  mailparse_msg_create
  8189.  mailparse_msg_extract_part_file
  8190.  mailparse_msg_extract_part
  8191.  mailparse_msg_free
  8192.  mailparse_msg_get_part_data
  8193.  mailparse_msg_get_part
  8194.  mailparse_msg_get_structure
  8195.  mailparse_msg_parse_file
  8196.  mailparse_msg_parse
  8197.  mailparse_rfc822_parse_addresses
  8198.  mailparse_stream_encode
  8199.  mailparse_uudecode_all
  8200. Math - Mathematical Functions
  8201.  abs
  8202.  acos
  8203.  acosh
  8204.  asin
  8205.  asinh
  8206.  atan2
  8207.  atan
  8208.  atanh
  8209.  base_convert
  8210.  bindec
  8211.  ceil
  8212.  cos
  8213.  cosh
  8214.  decbin
  8215.  dechex
  8216.  decoct
  8217.  deg2rad
  8218.  exp
  8219.  expm1
  8220.  floor
  8221.  fmod
  8222.  getrandmax
  8223.  hexdec
  8224.  hypot
  8225.  is_finite
  8226.  is_infinite
  8227.  is_nan
  8228.  lcg_value
  8229.  log10
  8230.  log1p
  8231.  log
  8232.  max
  8233.  min
  8234.  mt_getrandmax
  8235.  mt_rand
  8236.  mt_srand
  8237.  octdec
  8238.  pi
  8239.  pow
  8240.  rad2deg
  8241.  rand
  8242.  round
  8243.  sin
  8244.  sinh
  8245.  sqrt
  8246.  srand
  8247.  tan
  8248.  tanh
  8249. Multi-Byte String - Multi-Byte String Functions
  8250.  mb_convert_case
  8251.  mb_convert_encoding
  8252.  mb_convert_kana
  8253.  mb_convert_variables
  8254.  mb_decode_mimeheader
  8255.  mb_decode_numericentity
  8256.  mb_detect_encoding
  8257.  mb_detect_order
  8258.  mb_encode_mimeheader
  8259.  mb_encode_numericentity
  8260.  mb_ereg_match
  8261.  mb_ereg_replace
  8262.  mb_ereg_search_getpos
  8263.  mb_ereg_search_getregs
  8264.  mb_ereg_search_init
  8265.  mb_ereg_search_pos
  8266.  mb_ereg_search_regs
  8267.  mb_ereg_search_setpos
  8268.  mb_ereg_search
  8269.  mb_ereg
  8270.  mb_eregi_replace
  8271.  mb_eregi
  8272.  mb_get_info
  8273.  mb_http_input
  8274.  mb_http_output
  8275.  mb_internal_encoding
  8276.  mb_language
  8277.  mb_output_handler
  8278.  mb_parse_str
  8279.  mb_preferred_mime_name
  8280.  mb_regex_encoding
  8281.  mb_regex_set_options
  8282.  mb_send_mail
  8283.  mb_split
  8284.  mb_strcut
  8285.  mb_strimwidth
  8286.  mb_strlen
  8287.  mb_strpos
  8288.  mb_strrpos
  8289.  mb_strtolower
  8290.  mb_strtoupper
  8291.  mb_strwidth
  8292.  mb_substitute_character
  8293.  mb_substr_count
  8294.  mb_substr
  8295. MCAL - MCAL functions
  8296.  mcal_append_event
  8297.  mcal_close
  8298.  mcal_create_calendar
  8299.  mcal_date_compare
  8300.  mcal_date_valid
  8301.  mcal_day_of_week
  8302.  mcal_day_of_year
  8303.  mcal_days_in_month
  8304.  mcal_delete_calendar
  8305.  mcal_delete_event
  8306.  mcal_event_add_attribute
  8307.  mcal_event_init
  8308.  mcal_event_set_alarm
  8309.  mcal_event_set_category
  8310.  mcal_event_set_class
  8311.  mcal_event_set_description
  8312.  mcal_event_set_end
  8313.  mcal_event_set_recur_daily
  8314.  mcal_event_set_recur_monthly_mday
  8315.  mcal_event_set_recur_monthly_wday
  8316.  mcal_event_set_recur_none
  8317.  mcal_event_set_recur_weekly
  8318.  mcal_event_set_recur_yearly
  8319.  mcal_event_set_start
  8320.  mcal_event_set_title
  8321.  mcal_expunge
  8322.  mcal_fetch_current_stream_event
  8323.  mcal_fetch_event
  8324.  mcal_is_leap_year
  8325.  mcal_list_alarms
  8326.  mcal_list_events
  8327.  mcal_next_recurrence
  8328.  mcal_open
  8329.  mcal_popen
  8330.  mcal_rename_calendar
  8331.  mcal_reopen
  8332.  mcal_snooze
  8333.  mcal_store_event
  8334.  mcal_time_valid
  8335.  mcal_week_of_year
  8336. mcrypt - Mcrypt Encryption Functions
  8337.  mcrypt_cbc
  8338.  mcrypt_cfb
  8339.  mcrypt_create_iv
  8340.  mcrypt_decrypt
  8341.  mcrypt_ecb
  8342.  mcrypt_enc_get_algorithms_name
  8343.  mcrypt_enc_get_block_size
  8344.  mcrypt_enc_get_iv_size
  8345.  mcrypt_enc_get_key_size
  8346.  mcrypt_enc_get_modes_name
  8347.  mcrypt_enc_get_supported_key_sizes
  8348.  mcrypt_enc_is_block_algorithm_mode
  8349.  mcrypt_enc_is_block_algorithm
  8350.  mcrypt_enc_is_block_mode
  8351.  mcrypt_enc_self_test
  8352.  mcrypt_encrypt
  8353.  mcrypt_generic_deinit
  8354.  mcrypt_generic_end
  8355.  mcrypt_generic_init
  8356.  mcrypt_generic
  8357.  mcrypt_get_block_size
  8358.  mcrypt_get_cipher_name
  8359.  mcrypt_get_iv_size
  8360.  mcrypt_get_key_size
  8361.  mcrypt_list_algorithms
  8362.  mcrypt_list_modes
  8363.  mcrypt_module_close
  8364.  mcrypt_module_get_algo_block_size
  8365.  mcrypt_module_get_algo_key_size
  8366.  mcrypt_module_get_supported_key_sizes
  8367.  mcrypt_module_is_block_algorithm_mode
  8368.  mcrypt_module_is_block_algorithm
  8369.  mcrypt_module_is_block_mode
  8370.  mcrypt_module_open
  8371.  mcrypt_module_self_test
  8372.  mcrypt_ofb
  8373.  mdecrypt_generic
  8374. MCVE - MCVE Payment Functions
  8375.  mcve_adduser
  8376.  mcve_adduserarg
  8377.  mcve_bt
  8378.  mcve_checkstatus
  8379.  mcve_chkpwd
  8380.  mcve_chngpwd
  8381.  mcve_completeauthorizations
  8382.  mcve_connect
  8383.  mcve_connectionerror
  8384.  mcve_deleteresponse
  8385.  mcve_deletetrans
  8386.  mcve_deleteusersetup
  8387.  mcve_deluser
  8388.  mcve_destroyconn
  8389.  mcve_destroyengine
  8390.  mcve_disableuser
  8391.  mcve_edituser
  8392.  mcve_enableuser
  8393.  mcve_force
  8394.  mcve_getcell
  8395.  mcve_getcellbynum
  8396.  mcve_getcommadelimited
  8397.  mcve_getheader
  8398.  mcve_getuserarg
  8399.  mcve_getuserparam
  8400.  mcve_gft
  8401.  mcve_gl
  8402.  mcve_gut
  8403.  mcve_initconn
  8404.  mcve_initengine
  8405.  mcve_initusersetup
  8406.  mcve_iscommadelimited
  8407.  mcve_liststats
  8408.  mcve_listusers
  8409.  mcve_maxconntimeout
  8410.  mcve_monitor
  8411.  mcve_numcolumns
  8412.  mcve_numrows
  8413.  mcve_override
  8414.  mcve_parsecommadelimited
  8415.  mcve_ping
  8416.  mcve_preauth
  8417.  mcve_preauthcompletion
  8418.  mcve_qc
  8419.  mcve_responseparam
  8420.  mcve_return
  8421.  mcve_returncode
  8422.  mcve_returnstatus
  8423.  mcve_sale
  8424.  mcve_setblocking
  8425.  mcve_setdropfile
  8426.  mcve_setip
  8427.  mcve_setssl_files
  8428.  mcve_setssl
  8429.  mcve_settimeout
  8430.  mcve_settle
  8431.  mcve_text_avs
  8432.  mcve_text_code
  8433.  mcve_text_cv
  8434.  mcve_transactionauth
  8435.  mcve_transactionavs
  8436.  mcve_transactionbatch
  8437.  mcve_transactioncv
  8438.  mcve_transactionid
  8439.  mcve_transactionitem
  8440.  mcve_transactionssent
  8441.  mcve_transactiontext
  8442.  mcve_transinqueue
  8443.  mcve_transnew
  8444.  mcve_transparam
  8445.  mcve_transsend
  8446.  mcve_ub
  8447.  mcve_uwait
  8448.  mcve_verifyconnection
  8449.  mcve_verifysslcert
  8450.  mcve_void
  8451. mhash - Mhash Functions
  8452.  mhash_count
  8453.  mhash_get_block_size
  8454.  mhash_get_hash_name
  8455.  mhash_keygen_s2k
  8456.  mhash
  8457. Mimetype - Mimetype Functions
  8458.  mime_content_type
  8459. MS SQL Server - Microsoft SQL Server functions
  8460.  mssql_bind
  8461.  mssql_close
  8462.  mssql_connect
  8463.  mssql_data_seek
  8464.  mssql_execute
  8465.  mssql_fetch_array
  8466.  mssql_fetch_assoc
  8467.  mssql_fetch_batch
  8468.  mssql_fetch_field
  8469.  mssql_fetch_object
  8470.  mssql_fetch_row
  8471.  mssql_field_length
  8472.  mssql_field_name
  8473.  mssql_field_seek
  8474.  mssql_field_type
  8475.  mssql_free_result
  8476.  mssql_free_statement
  8477.  mssql_get_last_message
  8478.  mssql_guid_string
  8479.  mssql_init
  8480.  mssql_min_error_severity
  8481.  mssql_min_message_severity
  8482.  mssql_next_result
  8483.  mssql_num_fields
  8484.  mssql_num_rows
  8485.  mssql_pconnect
  8486.  mssql_query
  8487.  mssql_result
  8488.  mssql_rows_affected
  8489.  mssql_select_db
  8490. Ming (flash) - Ming functions for Flash
  8491.  ming_setcubicthreshold
  8492.  ming_setscale
  8493.  ming_useswfversion
  8494.  SWFAction
  8495.  SWFBitmap->getHeight
  8496.  SWFBitmap->getWidth
  8497.  SWFBitmap
  8498.  swfbutton_keypress
  8499.  SWFbutton->addAction
  8500.  SWFbutton->addShape
  8501.  SWFbutton->setAction
  8502.  SWFbutton->setdown
  8503.  SWFbutton->setHit
  8504.  SWFbutton->setOver
  8505.  SWFbutton->setUp
  8506.  SWFbutton
  8507.  SWFDisplayItem->addColor
  8508.  SWFDisplayItem->move
  8509.  SWFDisplayItem->moveTo
  8510.  SWFDisplayItem->multColor
  8511.  SWFDisplayItem->remove
  8512.  SWFDisplayItem->Rotate
  8513.  SWFDisplayItem->rotateTo
  8514.  SWFDisplayItem->scale
  8515.  SWFDisplayItem->scaleTo
  8516.  SWFDisplayItem->setDepth
  8517.  SWFDisplayItem->setName
  8518.  SWFDisplayItem->setRatio
  8519.  SWFDisplayItem->skewX
  8520.  SWFDisplayItem->skewXTo
  8521.  SWFDisplayItem->skewY
  8522.  SWFDisplayItem->skewYTo
  8523.  SWFDisplayItem
  8524.  SWFFill->moveTo
  8525.  SWFFill->rotateTo
  8526.  SWFFill->scaleTo
  8527.  SWFFill->skewXTo
  8528.  SWFFill->skewYTo
  8529.  SWFFill
  8530.  swffont->getwidth
  8531.  SWFFont
  8532.  SWFGradient->addEntry
  8533.  SWFGradient
  8534.  SWFMorph->getshape1
  8535.  SWFMorph->getshape2
  8536.  SWFMorph
  8537.  SWFMovie->add
  8538.  SWFMovie->nextframe
  8539.  SWFMovie->output
  8540.  swfmovie->remove
  8541.  SWFMovie->save
  8542.  SWFMovie->setbackground
  8543.  SWFMovie->setdimension
  8544.  SWFMovie->setframes
  8545.  SWFMovie->setrate
  8546.  SWFMovie->streammp3
  8547.  SWFMovie
  8548.  SWFShape->addFill
  8549.  SWFShape->drawCurve
  8550.  SWFShape->drawCurveTo
  8551.  SWFShape->drawLine
  8552.  SWFShape->drawLineTo
  8553.  SWFShape->movePen
  8554.  SWFShape->movePenTo
  8555.  SWFShape->setLeftFill
  8556.  SWFShape->setLine
  8557.  SWFShape->setRightFill
  8558.  SWFShape
  8559.  swfsprite->add
  8560.  SWFSprite->nextframe
  8561.  SWFSprite->remove
  8562.  SWFSprite->setframes
  8563.  SWFSprite
  8564.  SWFText->addString
  8565.  SWFText->getWidth
  8566.  SWFText->moveTo
  8567.  SWFText->setColor
  8568.  SWFText->setFont
  8569.  SWFText->setHeight
  8570.  SWFText->setSpacing
  8571.  SWFText
  8572.  SWFTextField->addstring
  8573.  SWFTextField->align
  8574.  SWFTextField->setbounds
  8575.  SWFTextField->setcolor
  8576.  SWFTextField->setFont
  8577.  SWFTextField->setHeight
  8578.  SWFTextField->setindentation
  8579.  SWFTextField->setLeftMargin
  8580.  SWFTextField->setLineSpacing
  8581.  SWFTextField->setMargins
  8582.  SWFTextField->setname
  8583.  SWFTextField->setrightMargin
  8584.  SWFTextField
  8585. Misc. - Miscellaneous functions
  8586.  connection_aborted
  8587.  connection_status
  8588.  connection_timeout
  8589.  constant
  8590.  define
  8591.  defined
  8592.  die
  8593.  eval
  8594.  exit
  8595.  get_browser
  8596.  highlight_file
  8597.  highlight_string
  8598.  ignore_user_abort
  8599.  pack
  8600.  show_source
  8601.  sleep
  8602.  uniqid
  8603.  unpack
  8604.  usleep
  8605. mnoGoSearch - mnoGoSearch Functions
  8606.  udm_add_search_limit
  8607.  udm_alloc_agent
  8608.  udm_api_version
  8609.  udm_cat_list
  8610.  udm_cat_path
  8611.  udm_check_charset
  8612.  udm_check_stored
  8613.  udm_clear_search_limits
  8614.  udm_close_stored
  8615.  udm_crc32
  8616.  udm_errno
  8617.  udm_error
  8618.  udm_find
  8619.  udm_free_agent
  8620.  udm_free_ispell_data
  8621.  udm_free_res
  8622.  udm_get_doc_count
  8623.  udm_get_res_field
  8624.  udm_get_res_param
  8625.  udm_load_ispell_data
  8626.  udm_open_stored
  8627.  udm_set_agent_param
  8628. mSQL - mSQL functions
  8629.  msql_affected_rows
  8630.  msql_close
  8631.  msql_connect
  8632.  msql_create_db
  8633.  msql_createdb
  8634.  msql_data_seek
  8635.  msql_dbname
  8636.  msql_drop_db
  8637.  msql_dropdb
  8638.  msql_error
  8639.  msql_fetch_array
  8640.  msql_fetch_field
  8641.  msql_fetch_object
  8642.  msql_fetch_row
  8643.  msql_field_seek
  8644.  msql_fieldflags
  8645.  msql_fieldlen
  8646.  msql_fieldname
  8647.  msql_fieldtable
  8648.  msql_fieldtype
  8649.  msql_free_result
  8650.  msql_freeresult
  8651.  msql_list_dbs
  8652.  msql_list_fields
  8653.  msql_list_tables
  8654.  msql_listdbs
  8655.  msql_listfields
  8656.  msql_listtables
  8657.  msql_num_fields
  8658.  msql_num_rows
  8659.  msql_numfields
  8660.  msql_numrows
  8661.  msql_pconnect
  8662.  msql_query
  8663.  msql_regcase
  8664.  msql_result
  8665.  msql_select_db
  8666.  msql_selectdb
  8667.  msql_tablename
  8668.  msql
  8669. MySQL - MySQL Functions
  8670.  mysql_affected_rows
  8671.  mysql_change_user
  8672.  mysql_client_encoding
  8673.  mysql_close
  8674.  mysql_connect
  8675.  mysql_create_db
  8676.  mysql_data_seek
  8677.  mysql_db_name
  8678.  mysql_db_query
  8679.  mysql_drop_db
  8680.  mysql_errno
  8681.  mysql_error
  8682.  mysql_escape_string
  8683.  mysql_fetch_array
  8684.  mysql_fetch_assoc
  8685.  mysql_fetch_field
  8686.  mysql_fetch_lengths
  8687.  mysql_fetch_object
  8688.  mysql_fetch_row
  8689.  mysql_field_flags
  8690.  mysql_field_len
  8691.  mysql_field_name
  8692.  mysql_field_seek
  8693.  mysql_field_table
  8694.  mysql_field_type
  8695.  mysql_free_result
  8696.  mysql_get_client_info
  8697.  mysql_get_host_info
  8698.  mysql_get_proto_info
  8699.  mysql_get_server_info
  8700.  mysql_info
  8701.  mysql_insert_id
  8702.  mysql_list_dbs
  8703.  mysql_list_fields
  8704.  mysql_list_processes
  8705.  mysql_list_tables
  8706.  mysql_num_fields
  8707.  mysql_num_rows
  8708.  mysql_pconnect
  8709.  mysql_ping
  8710.  mysql_query
  8711.  mysql_real_escape_string
  8712.  mysql_result
  8713.  mysql_select_db
  8714.  mysql_stat
  8715.  mysql_tablename
  8716.  mysql_thread_id
  8717.  mysql_unbuffered_query
  8718. mysqli - Improved MySQL Extension
  8719.  mysqli_affected_rows
  8720.  mysqli_autocommit
  8721.  mysqli_bind_param
  8722.  mysqli_bind_result
  8723.  mysqli_change_user
  8724.  mysqli_character_set_name
  8725.  mysqli_close
  8726.  mysqli_commit
  8727.  mysqli_connect
  8728.  mysqli_data_seek
  8729.  mysqli_debug
  8730.  mysqli_disable_reads_from_master
  8731.  mysqli_disable_rpl_parse
  8732.  mysqli_dump_debug_info
  8733.  mysqli_enable_reads_from_master
  8734.  mysqli_enable_rpl_parse
  8735.  mysqli_errno
  8736.  mysqli_error
  8737.  mysqli_execute
  8738.  mysqli_fetch_array
  8739.  mysqli_fetch_assoc
  8740.  mysqli_fetch_field_direct
  8741.  mysqli_fetch_field
  8742.  mysqli_fetch_fields
  8743.  mysqli_fetch_lengths
  8744.  mysqli_fetch_object
  8745.  mysqli_fetch_row
  8746.  mysqli_fetch
  8747.  mysqli_field_count
  8748.  mysqli_field_seek
  8749.  mysqli_field_tell
  8750.  mysqli_free_result
  8751.  mysqli_get_client_info
  8752.  mysqli_get_host_info
  8753.  mysqli_get_proto_info
  8754.  mysqli_get_server_info
  8755.  mysqli_get_server_version
  8756.  mysqli_info
  8757.  mysqli_init
  8758.  mysqli_insert_id
  8759.  mysqli_kill
  8760.  mysqli_master_query
  8761.  mysqli_num_fields
  8762.  mysqli_num_rows
  8763.  mysqli_options
  8764.  mysqli_param_count
  8765.  mysqli_ping
  8766.  mysqli_prepare_result
  8767.  mysqli_prepare
  8768.  mysqli_profiler
  8769.  mysqli_query
  8770.  mysqli_read_query_result
  8771.  mysqli_real_connect
  8772.  mysqli_real_escape_string
  8773.  mysqli_real_query
  8774.  mysqli_reload
  8775.  mysqli_rollback
  8776.  mysqli_rpl_parse_enabled
  8777.  mysqli_rpl_probe
  8778.  mysqli_rpl_query_type
  8779.  mysqli_select_db
  8780.  mysqli_send_long_data
  8781.  mysqli_send_query
  8782.  mysqli_slave_query
  8783.  mysqli_ssl_set
  8784.  mysqli_stat
  8785.  mysqli_stmt_affected_rows
  8786.  mysqli_stmt_close
  8787.  mysqli_stmt_errno
  8788.  mysqli_stmt_error
  8789.  mysqli_stmt_store_result
  8790.  mysqli_store_result
  8791.  mysqli_thread_id
  8792.  mysqli_thread_safe
  8793.  mysqli_use_result
  8794.  mysqli_warning_count
  8795. Msession - Mohawk Software session handler functions
  8796.  msession_connect
  8797.  msession_count
  8798.  msession_create
  8799.  msession_destroy
  8800.  msession_disconnect
  8801.  msession_find
  8802.  msession_get_array
  8803.  msession_get
  8804.  msession_getdata
  8805.  msession_inc
  8806.  msession_list
  8807.  msession_listvar
  8808.  msession_lock
  8809.  msession_plugin
  8810.  msession_randstr
  8811.  msession_set_array
  8812.  msession_set
  8813.  msession_setdata
  8814.  msession_timeout
  8815.  msession_uniq
  8816.  msession_unlock
  8817. muscat - muscat functions
  8818.  muscat_close
  8819.  muscat_get
  8820.  muscat_give
  8821.  muscat_setup_net
  8822.  muscat_setup
  8823. Network - Network Functions
  8824.  checkdnsrr
  8825.  closelog
  8826.  debugger_off
  8827.  debugger_on
  8828.  define_syslog_variables
  8829.  dns_check_record
  8830.  dns_get_mx
  8831.  dns_get_record
  8832.  fsockopen
  8833.  gethostbyaddr
  8834.  gethostbyname
  8835.  gethostbynamel
  8836.  getmxrr
  8837.  getprotobyname
  8838.  getprotobynumber
  8839.  getservbyname
  8840.  getservbyport
  8841.  ip2long
  8842.  long2ip
  8843.  openlog
  8844.  pfsockopen
  8845.  socket_get_status
  8846.  socket_set_blocking
  8847.  socket_set_timeout
  8848.  syslog
  8849. Ncurses - Ncurses terminal screen control functions
  8850.  ncurses_addch
  8851.  ncurses_addchnstr
  8852.  ncurses_addchstr
  8853.  ncurses_addnstr
  8854.  ncurses_addstr
  8855.  ncurses_assume_default_colors
  8856.  ncurses_attroff
  8857.  ncurses_attron
  8858.  ncurses_attrset
  8859.  ncurses_baudrate
  8860.  ncurses_beep
  8861.  ncurses_bkgd
  8862.  ncurses_bkgdset
  8863.  ncurses_border
  8864.  ncurses_bottom_panel
  8865.  ncurses_can_change_color
  8866.  ncurses_cbreak
  8867.  ncurses_clear
  8868.  ncurses_clrtobot
  8869.  ncurses_clrtoeol
  8870.  ncurses_color_content
  8871.  ncurses_color_set
  8872.  ncurses_curs_set
  8873.  ncurses_def_prog_mode
  8874.  ncurses_def_shell_mode
  8875.  ncurses_define_key
  8876.  ncurses_del_panel
  8877.  ncurses_delay_output
  8878.  ncurses_delch
  8879.  ncurses_deleteln
  8880.  ncurses_delwin
  8881.  ncurses_doupdate
  8882.  ncurses_echo
  8883.  ncurses_echochar
  8884.  ncurses_end
  8885.  ncurses_erase
  8886.  ncurses_erasechar
  8887.  ncurses_filter
  8888.  ncurses_flash
  8889.  ncurses_flushinp
  8890.  ncurses_getch
  8891.  ncurses_getmaxyx
  8892.  ncurses_getmouse
  8893.  ncurses_getyx
  8894.  ncurses_halfdelay
  8895.  ncurses_has_colors
  8896.  ncurses_has_ic
  8897.  ncurses_has_il
  8898.  ncurses_has_key
  8899.  ncurses_hide_panel
  8900.  ncurses_hline
  8901.  ncurses_inch
  8902.  ncurses_init_color
  8903.  ncurses_init_pair
  8904.  ncurses_init
  8905.  ncurses_insch
  8906.  ncurses_insdelln
  8907.  ncurses_insertln
  8908.  ncurses_insstr
  8909.  ncurses_instr
  8910.  ncurses_isendwin
  8911.  ncurses_keyok
  8912.  ncurses_keypad
  8913.  ncurses_killchar
  8914.  ncurses_longname
  8915.  ncurses_meta
  8916.  ncurses_mouse_trafo
  8917.  ncurses_mouseinterval
  8918.  ncurses_mousemask
  8919.  ncurses_move_panel
  8920.  ncurses_move
  8921.  ncurses_mvaddch
  8922.  ncurses_mvaddchnstr
  8923.  ncurses_mvaddchstr
  8924.  ncurses_mvaddnstr
  8925.  ncurses_mvaddstr
  8926.  ncurses_mvcur
  8927.  ncurses_mvdelch
  8928.  ncurses_mvgetch
  8929.  ncurses_mvhline
  8930.  ncurses_mvinch
  8931.  ncurses_mvvline
  8932.  ncurses_mvwaddstr
  8933.  ncurses_napms
  8934.  ncurses_new_panel
  8935.  ncurses_newpad
  8936.  ncurses_newwin
  8937.  ncurses_nl
  8938.  ncurses_nocbreak
  8939.  ncurses_noecho
  8940.  ncurses_nonl
  8941.  ncurses_noqiflush
  8942.  ncurses_noraw
  8943.  ncurses_pair_content
  8944.  ncurses_panel_above
  8945.  ncurses_panel_below
  8946.  ncurses_panel_window
  8947.  ncurses_pnoutrefresh
  8948.  ncurses_prefresh
  8949.  ncurses_putp
  8950.  ncurses_qiflush
  8951.  ncurses_raw
  8952.  ncurses_refresh
  8953.  ncurses_replace_panel
  8954.  ncurses_reset_prog_mode
  8955.  ncurses_reset_shell_mode
  8956.  ncurses_resetty
  8957.  ncurses_savetty
  8958.  ncurses_scr_dump
  8959.  ncurses_scr_init
  8960.  ncurses_scr_restore
  8961.  ncurses_scr_set
  8962.  ncurses_scrl
  8963.  ncurses_show_panel
  8964.  ncurses_slk_attr
  8965.  ncurses_slk_attroff
  8966.  ncurses_slk_attron
  8967.  ncurses_slk_attrset
  8968.  ncurses_slk_clear
  8969.  ncurses_slk_color
  8970.  ncurses_slk_init
  8971.  ncurses_slk_noutrefresh
  8972.  ncurses_slk_refresh
  8973.  ncurses_slk_restore
  8974.  ncurses_slk_set
  8975.  ncurses_slk_touch
  8976.  ncurses_standend
  8977.  ncurses_standout
  8978.  ncurses_start_color
  8979.  ncurses_termattrs
  8980.  ncurses_termname
  8981.  ncurses_timeout
  8982.  ncurses_top_panel
  8983.  ncurses_typeahead
  8984.  ncurses_ungetch
  8985.  ncurses_ungetmouse
  8986.  ncurses_update_panels
  8987.  ncurses_use_default_colors
  8988.  ncurses_use_env
  8989.  ncurses_use_extended_names
  8990.  ncurses_vidattr
  8991.  ncurses_vline
  8992.  ncurses_waddch
  8993.  ncurses_waddstr
  8994.  ncurses_wattroff
  8995.  ncurses_wattron
  8996.  ncurses_wattrset
  8997.  ncurses_wborder
  8998.  ncurses_wclear
  8999.  ncurses_wcolor_set
  9000.  ncurses_werase
  9001.  ncurses_wgetch
  9002.  ncurses_whline
  9003.  ncurses_wmouse_trafo
  9004.  ncurses_wmove
  9005.  ncurses_wnoutrefresh
  9006.  ncurses_wrefresh
  9007.  ncurses_wstandend
  9008.  ncurses_wstandout
  9009.  ncurses_wvline
  9010. Lotus Notes - Lotus Notes functions
  9011.  notes_body
  9012.  notes_copy_db
  9013.  notes_create_db
  9014.  notes_create_note
  9015.  notes_drop_db
  9016.  notes_find_note
  9017.  notes_header_info
  9018.  notes_list_msgs
  9019.  notes_mark_read
  9020.  notes_mark_unread
  9021.  notes_nav_create
  9022.  notes_search
  9023.  notes_unread
  9024.  notes_version
  9025. NSAPI - NSAPI-specific Functions
  9026.  nsapi_request_headers
  9027.  nsapi_response_headers
  9028.  nsapi_virtual
  9029. ODBC - Unified ODBC functions
  9030.  odbc_autocommit
  9031.  odbc_binmode
  9032.  odbc_close_all
  9033.  odbc_close
  9034.  odbc_columnprivileges
  9035.  odbc_columns
  9036.  odbc_commit
  9037.  odbc_connect
  9038.  odbc_cursor
  9039.  odbc_data_source
  9040.  odbc_do
  9041.  odbc_error
  9042.  odbc_errormsg
  9043.  odbc_exec
  9044.  odbc_execute
  9045.  odbc_fetch_array
  9046.  odbc_fetch_into
  9047.  odbc_fetch_object
  9048.  odbc_fetch_row
  9049.  odbc_field_len
  9050.  odbc_field_name
  9051.  odbc_field_num
  9052.  odbc_field_precision
  9053.  odbc_field_scale
  9054.  odbc_field_type
  9055.  odbc_foreignkeys
  9056.  odbc_free_result
  9057.  odbc_gettypeinfo
  9058.  odbc_longreadlen
  9059.  odbc_next_result
  9060.  odbc_num_fields
  9061.  odbc_num_rows
  9062.  odbc_pconnect
  9063.  odbc_prepare
  9064.  odbc_primarykeys
  9065.  odbc_procedurecolumns
  9066.  odbc_procedures
  9067.  odbc_result_all
  9068.  odbc_result
  9069.  odbc_rollback
  9070.  odbc_setoption
  9071.  odbc_specialcolumns
  9072.  odbc_statistics
  9073.  odbc_tableprivileges
  9074.  odbc_tables
  9075. Object Aggregation - Object Aggregation/Composition Functions
  9076.  aggregate_info
  9077.  aggregate_methods_by_list
  9078.  aggregate_methods_by_regexp
  9079.  aggregate_methods
  9080.  aggregate_properties_by_list
  9081.  aggregate_properties_by_regexp
  9082.  aggregate_properties
  9083.  aggregate
  9084.  aggregation_info
  9085.  deaggregate
  9086. OCI8 - Oracle 8 functions
  9087.  ocibindbyname
  9088.  ocicancel
  9089.  ocicloselob
  9090.  ocicollappend
  9091.  ocicollassign
  9092.  ocicollassignelem
  9093.  ocicollgetelem
  9094.  ocicollmax
  9095.  ocicollsize
  9096.  ocicolltrim
  9097.  ocicolumnisnull
  9098.  ocicolumnname
  9099.  ocicolumnprecision
  9100.  ocicolumnscale
  9101.  ocicolumnsize
  9102.  ocicolumntype
  9103.  ocicolumntyperaw
  9104.  ocicommit
  9105.  ocidefinebyname
  9106.  ocierror
  9107.  ociexecute
  9108.  ocifetch
  9109.  ocifetchinto
  9110.  ocifetchstatement
  9111.  ocifreecollection
  9112.  ocifreecursor
  9113.  ocifreedesc
  9114.  ocifreestatement
  9115.  ociinternaldebug
  9116.  ociloadlob
  9117.  ocilogoff
  9118.  ocilogon
  9119.  ocinewcollection
  9120.  ocinewcursor
  9121.  ocinewdescriptor
  9122.  ocinlogon
  9123.  ocinumcols
  9124.  ociparse
  9125.  ociplogon
  9126.  ociresult
  9127.  ocirollback
  9128.  ocirowcount
  9129.  ocisavelob
  9130.  ocisavelobfile
  9131.  ociserverversion
  9132.  ocisetprefetch
  9133.  ocistatementtype
  9134.  ociwritelobtofile
  9135.  ociwritetemporarylob
  9136. OpenSSL - OpenSSL functions
  9137.  openssl_csr_export_to_file
  9138.  openssl_csr_export
  9139.  openssl_csr_new
  9140.  openssl_csr_sign
  9141.  openssl_error_string
  9142.  openssl_free_key
  9143.  openssl_get_privatekey
  9144.  openssl_get_publickey
  9145.  openssl_open
  9146.  openssl_pkcs7_decrypt
  9147.  openssl_pkcs7_encrypt
  9148.  openssl_pkcs7_sign
  9149.  openssl_pkcs7_verify
  9150.  openssl_pkey_export_to_file
  9151.  openssl_pkey_export
  9152.  openssl_pkey_get_private
  9153.  openssl_pkey_get_public
  9154.  openssl_pkey_new
  9155.  openssl_private_decrypt
  9156.  openssl_private_encrypt
  9157.  openssl_public_decrypt
  9158.  openssl_public_encrypt
  9159.  openssl_seal
  9160.  openssl_sign
  9161.  openssl_verify
  9162.  openssl_x509_check_private_key
  9163.  openssl_x509_checkpurpose
  9164.  openssl_x509_export_to_file
  9165.  openssl_x509_export
  9166.  openssl_x509_free
  9167.  openssl_x509_parse
  9168.  openssl_x509_read
  9169. Oracle - Oracle functions
  9170.  ora_bind
  9171.  ora_close
  9172.  ora_columnname
  9173.  ora_columnsize
  9174.  ora_columntype
  9175.  ora_commit
  9176.  ora_commitoff
  9177.  ora_commiton
  9178.  ora_do
  9179.  ora_error
  9180.  ora_errorcode
  9181.  ora_exec
  9182.  ora_fetch_into
  9183.  ora_fetch
  9184.  ora_getcolumn
  9185.  ora_logoff
  9186.  ora_logon
  9187.  ora_numcols
  9188.  ora_numrows
  9189.  ora_open
  9190.  ora_parse
  9191.  ora_plogon
  9192.  ora_rollback
  9193. OvrimosSQL - Ovrimos SQL functions
  9194.  ovrimos_close
  9195.  ovrimos_commit
  9196.  ovrimos_connect
  9197.  ovrimos_cursor
  9198.  ovrimos_exec
  9199.  ovrimos_execute
  9200.  ovrimos_fetch_into
  9201.  ovrimos_fetch_row
  9202.  ovrimos_field_len
  9203.  ovrimos_field_name
  9204.  ovrimos_field_num
  9205.  ovrimos_field_type
  9206.  ovrimos_free_result
  9207.  ovrimos_longreadlen
  9208.  ovrimos_num_fields
  9209.  ovrimos_num_rows
  9210.  ovrimos_prepare
  9211.  ovrimos_result_all
  9212.  ovrimos_result
  9213.  ovrimos_rollback
  9214. Output Control - Output Control Functions
  9215.  flush
  9216.  ob_clean
  9217.  ob_end_clean
  9218.  ob_end_flush
  9219.  ob_flush
  9220.  ob_get_clean
  9221.  ob_get_contents
  9222.  ob_get_length
  9223.  ob_get_level
  9224.  ob_get_status
  9225.  ob_gzhandler
  9226.  ob_implicit_flush
  9227.  ob_start
  9228. Object overloading - Object property and method call overloading
  9229.  overload
  9230. PDF - PDF functions
  9231.  pdf_add_annotation
  9232.  pdf_add_bookmark
  9233.  pdf_add_launchlink
  9234.  pdf_add_locallink
  9235.  pdf_add_note
  9236.  pdf_add_outline
  9237.  pdf_add_pdflink
  9238.  pdf_add_thumbnail
  9239.  pdf_add_weblink
  9240.  pdf_arc
  9241.  pdf_arcn
  9242.  pdf_attach_file
  9243.  pdf_begin_page
  9244.  pdf_begin_pattern
  9245.  pdf_begin_template
  9246.  pdf_circle
  9247.  pdf_clip
  9248.  pdf_close_image
  9249.  pdf_close_pdi_page
  9250.  pdf_close_pdi
  9251.  pdf_close
  9252.  pdf_closepath_fill_stroke
  9253.  pdf_closepath_stroke
  9254.  pdf_closepath
  9255.  pdf_concat
  9256.  pdf_continue_text
  9257.  pdf_curveto
  9258.  pdf_delete
  9259.  pdf_end_page
  9260.  pdf_end_pattern
  9261.  pdf_end_template
  9262.  pdf_endpath
  9263.  pdf_fill_stroke
  9264.  pdf_fill
  9265.  pdf_findfont
  9266.  pdf_get_buffer
  9267.  pdf_get_font
  9268.  pdf_get_fontname
  9269.  pdf_get_fontsize
  9270.  pdf_get_image_height
  9271.  pdf_get_image_width
  9272.  pdf_get_majorversion
  9273.  pdf_get_minorversion
  9274.  pdf_get_parameter
  9275.  pdf_get_pdi_parameter
  9276.  pdf_get_pdi_value
  9277.  pdf_get_value
  9278.  pdf_initgraphics
  9279.  pdf_lineto
  9280.  pdf_makespotcolor
  9281.  pdf_moveto
  9282.  pdf_new
  9283.  pdf_open_CCITT
  9284.  pdf_open_file
  9285.  pdf_open_gif
  9286.  pdf_open_image_file
  9287.  pdf_open_image
  9288.  pdf_open_jpeg
  9289.  pdf_open_memory_image
  9290.  pdf_open_pdi_page
  9291.  pdf_open_pdi
  9292.  pdf_open_png
  9293.  pdf_open_tiff
  9294.  pdf_open
  9295.  pdf_place_image
  9296.  pdf_place_pdi_page
  9297.  pdf_rect
  9298.  pdf_restore
  9299.  pdf_rotate
  9300.  pdf_save
  9301.  pdf_scale
  9302.  pdf_set_border_color
  9303.  pdf_set_border_dash
  9304.  pdf_set_border_style
  9305.  pdf_set_char_spacing
  9306.  pdf_set_duration
  9307.  pdf_set_font
  9308.  pdf_set_horiz_scaling
  9309.  pdf_set_info_author
  9310.  pdf_set_info_creator
  9311.  pdf_set_info_keywords
  9312.  pdf_set_info_subject
  9313.  pdf_set_info_title
  9314.  pdf_set_info
  9315.  pdf_set_leading
  9316.  pdf_set_parameter
  9317.  pdf_set_text_matrix
  9318.  pdf_set_text_pos
  9319.  pdf_set_text_rendering
  9320.  pdf_set_text_rise
  9321.  pdf_set_value
  9322.  pdf_set_word_spacing
  9323.  pdf_setcolor
  9324.  pdf_setdash
  9325.  pdf_setflat
  9326.  pdf_setfont
  9327.  pdf_setgray_fill
  9328.  pdf_setgray_stroke
  9329.  pdf_setgray
  9330.  pdf_setlinecap
  9331.  pdf_setlinejoin
  9332.  pdf_setlinewidth
  9333.  pdf_setmatrix
  9334.  pdf_setmiterlimit
  9335.  pdf_setpolydash
  9336.  pdf_setrgbcolor_fill
  9337.  pdf_setrgbcolor_stroke
  9338.  pdf_setrgbcolor
  9339.  pdf_show_boxed
  9340.  pdf_show_xy
  9341.  pdf_show
  9342.  pdf_skew
  9343.  pdf_stringwidth
  9344.  pdf_stroke
  9345.  pdf_translate
  9346. Verisign Payflow Pro - Verisign Payflow Pro functions
  9347.  pfpro_cleanup
  9348.  pfpro_init
  9349.  pfpro_process_raw
  9350.  pfpro_process
  9351.  pfpro_version
  9352. PHP Options/Info - PHP Options&Information
  9353.  assert_options
  9354.  assert
  9355.  dl
  9356.  extension_loaded
  9357.  get_cfg_var
  9358.  get_current_user
  9359.  get_defined_constants
  9360.  get_extension_funcs
  9361.  get_include_path
  9362.  get_included_files
  9363.  get_loaded_extensions
  9364.  get_magic_quotes_gpc
  9365.  get_magic_quotes_runtime
  9366.  get_required_files
  9367.  getenv
  9368.  getlastmod
  9369.  getmygid
  9370.  getmyinode
  9371.  getmypid
  9372.  getmyuid
  9373.  getopt
  9374.  getrusage
  9375.  ini_alter
  9376.  ini_get_all
  9377.  ini_get
  9378.  ini_restore
  9379.  ini_set
  9380.  main
  9381.  memory_get_usage
  9382.  php_ini_scanned_files
  9383.  php_logo_guid
  9384.  php_sapi_name
  9385.  php_uname
  9386.  phpcredits
  9387.  phpinfo
  9388.  phpversion
  9389.  putenv
  9390.  restore_include_path
  9391.  set_include_path
  9392.  set_magic_quotes_runtime
  9393.  set_time_limit
  9394.  version_compare
  9395.  zend_logo_guid
  9396.  zend_version
  9397. POSIX - POSIX functions
  9398.  posix_ctermid
  9399.  posix_get_last_error
  9400.  posix_getcwd
  9401.  posix_getegid
  9402.  posix_geteuid
  9403.  posix_getgid
  9404.  posix_getgrgid
  9405.  posix_getgrnam
  9406.  posix_getgroups
  9407.  posix_getlogin
  9408.  posix_getpgid
  9409.  posix_getpgrp
  9410.  posix_getpid
  9411.  posix_getppid
  9412.  posix_getpwnam
  9413.  posix_getpwuid
  9414.  posix_getrlimit
  9415.  posix_getsid
  9416.  posix_getuid
  9417.  posix_isatty
  9418.  posix_kill
  9419.  posix_mkfifo
  9420.  posix_setegid
  9421.  posix_seteuid
  9422.  posix_setgid
  9423.  posix_setpgid
  9424.  posix_setsid
  9425.  posix_setuid
  9426.  posix_strerror
  9427.  posix_times
  9428.  posix_ttyname
  9429.  posix_uname
  9430. PostgreSQL - PostgreSQL functions
  9431.  pg_affected_rows
  9432.  pg_cancel_query
  9433.  pg_client_encoding
  9434.  pg_close
  9435.  pg_connect
  9436.  pg_connection_busy
  9437.  pg_connection_reset
  9438.  pg_connection_status
  9439.  pg_convert
  9440.  pg_copy_from
  9441.  pg_copy_to
  9442.  pg_dbname
  9443.  pg_delete
  9444.  pg_end_copy
  9445.  pg_escape_bytea
  9446.  pg_escape_string
  9447.  pg_fetch_all
  9448.  pg_fetch_array
  9449.  pg_fetch_assoc
  9450.  pg_fetch_object
  9451.  pg_fetch_result
  9452.  pg_fetch_row
  9453.  pg_field_is_null
  9454.  pg_field_name
  9455.  pg_field_num
  9456.  pg_field_prtlen
  9457.  pg_field_size
  9458.  pg_field_type
  9459.  pg_free_result
  9460.  pg_get_notify
  9461.  pg_get_pid
  9462.  pg_get_result
  9463.  pg_host
  9464.  pg_insert
  9465.  pg_last_error
  9466.  pg_last_notice
  9467.  pg_last_oid
  9468.  pg_lo_close
  9469.  pg_lo_create
  9470.  pg_lo_export
  9471.  pg_lo_import
  9472.  pg_lo_open
  9473.  pg_lo_read_all
  9474.  pg_lo_read
  9475.  pg_lo_seek
  9476.  pg_lo_tell
  9477.  pg_lo_unlink
  9478.  pg_lo_write
  9479.  pg_meta_data
  9480.  pg_num_fields
  9481.  pg_num_rows
  9482.  pg_options
  9483.  pg_pconnect
  9484.  pg_ping
  9485.  pg_port
  9486.  pg_put_line
  9487.  pg_query
  9488.  pg_result_error
  9489.  pg_result_seek
  9490.  pg_result_status
  9491.  pg_select
  9492.  pg_send_query
  9493.  pg_set_client_encoding
  9494.  pg_trace
  9495.  pg_tty
  9496.  pg_unescape_bytea
  9497.  pg_untrace
  9498.  pg_update
  9499. PCNTL - Process Control Functions
  9500.  pcntl_exec
  9501.  pcntl_fork
  9502.  pcntl_signal
  9503.  pcntl_waitpid
  9504.  pcntl_wexitstatus
  9505.  pcntl_wifexited
  9506.  pcntl_wifsignaled
  9507.  pcntl_wifstopped
  9508.  pcntl_wstopsig
  9509.  pcntl_wtermsig
  9510. Program Execution - Program Execution functions
  9511.  escapeshellarg
  9512.  escapeshellcmd
  9513.  exec
  9514.  passthru
  9515.  proc_close
  9516.  proc_get_status
  9517.  proc_nice
  9518.  proc_open
  9519.  proc_terminate
  9520.  shell_exec
  9521.  system
  9522. Printer - Printer functions
  9523.  printer_abort
  9524.  printer_close
  9525.  printer_create_brush
  9526.  printer_create_dc
  9527.  printer_create_font
  9528.  printer_create_pen
  9529.  printer_delete_brush
  9530.  printer_delete_dc
  9531.  printer_delete_font
  9532.  printer_delete_pen
  9533.  printer_draw_bmp
  9534.  printer_draw_chord
  9535.  printer_draw_elipse
  9536.  printer_draw_line
  9537.  printer_draw_pie
  9538.  printer_draw_rectangle
  9539.  printer_draw_roundrect
  9540.  printer_draw_text
  9541.  printer_end_doc
  9542.  printer_end_page
  9543.  printer_get_option
  9544.  printer_list
  9545.  printer_logical_fontheight
  9546.  printer_open
  9547.  printer_select_brush
  9548.  printer_select_font
  9549.  printer_select_pen
  9550.  printer_set_option
  9551.  printer_start_doc
  9552.  printer_start_page
  9553.  printer_write
  9554. Pspell - Pspell Functions
  9555.  pspell_add_to_personal
  9556.  pspell_add_to_session
  9557.  pspell_check
  9558.  pspell_clear_session
  9559.  pspell_config_create
  9560.  pspell_config_ignore
  9561.  pspell_config_mode
  9562.  pspell_config_personal
  9563.  pspell_config_repl
  9564.  pspell_config_runtogether
  9565.  pspell_config_save_repl
  9566.  pspell_new_config
  9567.  pspell_new_personal
  9568.  pspell_new
  9569.  pspell_save_wordlist
  9570.  pspell_store_replacement
  9571.  pspell_suggest
  9572. Readline - GNU Readline
  9573.  readline_add_history
  9574.  readline_clear_history
  9575.  readline_completion_function
  9576.  readline_info
  9577.  readline_list_history
  9578.  readline_read_history
  9579.  readline_write_history
  9580.  readline
  9581. Recode - GNU Recode functions
  9582.  recode_file
  9583.  recode_string
  9584.  recode
  9585. PCRE - Regular Expression Functions (Perl-Compatible)
  9586.  Pattern Modifiers
  9587.  Pattern Syntax
  9588.  preg_grep
  9589.  preg_match_all
  9590.  preg_match
  9591.  preg_quote
  9592.  preg_replace_callback
  9593.  preg_replace
  9594.  preg_split
  9595. qtdom - qtdom functions
  9596.  qdom_error
  9597.  qdom_tree
  9598. Regexps - Regular Expression Functions (POSIX Extended)
  9599.  ereg_replace
  9600.  ereg
  9601.  eregi_replace
  9602.  eregi
  9603.  split
  9604.  spliti
  9605.  sql_regcase
  9606. Semaphore - Semaphore, Shared Memory and IPC Functions
  9607.  ftok
  9608.  msg_get_queue
  9609.  msg_receive
  9610.  msg_remove_queue
  9611.  msg_send
  9612.  msg_set_queue
  9613.  msg_stat_queue
  9614.  sem_acquire
  9615.  sem_get
  9616.  sem_release
  9617.  sem_remove
  9618.  shm_attach
  9619.  shm_detach
  9620.  shm_get_var
  9621.  shm_put_var
  9622.  shm_remove_var
  9623.  shm_remove
  9624. SESAM - SESAM database functions
  9625.  sesam_affected_rows
  9626.  sesam_commit
  9627.  sesam_connect
  9628.  sesam_diagnostic
  9629.  sesam_disconnect
  9630.  sesam_errormsg
  9631.  sesam_execimm
  9632.  sesam_fetch_array
  9633.  sesam_fetch_result
  9634.  sesam_fetch_row
  9635.  sesam_field_array
  9636.  sesam_field_name
  9637.  sesam_free_result
  9638.  sesam_num_fields
  9639.  sesam_query
  9640.  sesam_rollback
  9641.  sesam_seek_row
  9642.  sesam_settransaction
  9643. Sessions - Session handling functions
  9644.  session_cache_expire
  9645.  session_cache_limiter
  9646.  session_decode
  9647.  session_destroy
  9648.  session_encode
  9649.  session_get_cookie_params
  9650.  session_id
  9651.  session_is_registered
  9652.  session_module_name
  9653.  session_name
  9654.  session_regenerate_id
  9655.  session_register
  9656.  session_save_path
  9657.  session_set_cookie_params
  9658.  session_set_save_handler
  9659.  session_start
  9660.  session_unregister
  9661.  session_unset
  9662.  session_write_close
  9663. shmop - Shared Memory Functions
  9664.  shmop_close
  9665.  shmop_delete
  9666.  shmop_open
  9667.  shmop_read
  9668.  shmop_size
  9669.  shmop_write
  9670. SQLite - SQLite
  9671.  sqlite_array_query
  9672.  sqlite_busy_timeout
  9673.  sqlite_changes
  9674.  sqlite_close
  9675.  sqlite_column
  9676.  sqlite_create_aggregate
  9677.  sqlite_create_function
  9678.  sqlite_current
  9679.  sqlite_error_string
  9680.  sqlite_escape_string
  9681.  sqlite_fetch_array
  9682.  sqlite_fetch_single
  9683.  sqlite_fetch_string
  9684.  sqlite_field_name
  9685.  sqlite_has_more
  9686.  sqlite_last_error
  9687.  sqlite_last_insert_rowid
  9688.  sqlite_libencoding
  9689.  sqlite_libversion
  9690.  sqlite_next
  9691.  sqlite_num_fields
  9692.  sqlite_num_rows
  9693.  sqlite_open
  9694.  sqlite_popen
  9695.  sqlite_query
  9696.  sqlite_rewind
  9697.  sqlite_seek
  9698.  sqlite_udf_decode_binary
  9699.  sqlite_udf_encode_binary
  9700.  sqlite_unbuffered_query
  9701. SWF - Shockwave Flash functions
  9702.  swf_actiongeturl
  9703.  swf_actiongotoframe
  9704.  swf_actiongotolabel
  9705.  swf_actionnextframe
  9706.  swf_actionplay
  9707.  swf_actionprevframe
  9708.  swf_actionsettarget
  9709.  swf_actionstop
  9710.  swf_actiontogglequality
  9711.  swf_actionwaitforframe
  9712.  swf_addbuttonrecord
  9713.  swf_addcolor
  9714.  swf_closefile
  9715.  swf_definebitmap
  9716.  swf_definefont
  9717.  swf_defineline
  9718.  swf_definepoly
  9719.  swf_definerect
  9720.  swf_definetext
  9721.  swf_endbutton
  9722.  swf_enddoaction
  9723.  swf_endshape
  9724.  swf_endsymbol
  9725.  swf_fontsize
  9726.  swf_fontslant
  9727.  swf_fonttracking
  9728.  swf_getbitmapinfo
  9729.  swf_getfontinfo
  9730.  swf_getframe
  9731.  swf_labelframe
  9732.  swf_lookat
  9733.  swf_modifyobject
  9734.  swf_mulcolor
  9735.  swf_nextid
  9736.  swf_oncondition
  9737.  swf_openfile
  9738.  swf_ortho2
  9739.  swf_ortho
  9740.  swf_perspective
  9741.  swf_placeobject
  9742.  swf_polarview
  9743.  swf_popmatrix
  9744.  swf_posround
  9745.  swf_pushmatrix
  9746.  swf_removeobject
  9747.  swf_rotate
  9748.  swf_scale
  9749.  swf_setfont
  9750.  swf_setframe
  9751.  swf_shapearc
  9752.  swf_shapecurveto3
  9753.  swf_shapecurveto
  9754.  swf_shapefillbitmapclip
  9755.  swf_shapefillbitmaptile
  9756.  swf_shapefilloff
  9757.  swf_shapefillsolid
  9758.  swf_shapelinesolid
  9759.  swf_shapelineto
  9760.  swf_shapemoveto
  9761.  swf_showframe
  9762.  swf_startbutton
  9763.  swf_startdoaction
  9764.  swf_startshape
  9765.  swf_startsymbol
  9766.  swf_textwidth
  9767.  swf_translate
  9768.  swf_viewport
  9769. SNMP - SNMP functions
  9770.  snmp_get_quick_print
  9771.  snmp_set_quick_print
  9772.  snmpget
  9773.  snmprealwalk
  9774.  snmpset
  9775.  snmpwalk
  9776.  snmpwalkoid
  9777. Sockets - Socket functions
  9778.  socket_accept
  9779.  socket_bind
  9780.  socket_clear_error
  9781.  socket_close
  9782.  socket_connect
  9783.  socket_create_listen
  9784.  socket_create_pair
  9785.  socket_create
  9786.  socket_get_option
  9787.  socket_getpeername
  9788.  socket_getsockname
  9789.  socket_iovec_add
  9790.  socket_iovec_alloc
  9791.  socket_iovec_delete
  9792.  socket_iovec_fetch
  9793.  socket_iovec_free
  9794.  socket_iovec_set
  9795.  socket_last_error
  9796.  socket_listen
  9797.  socket_read
  9798.  socket_readv
  9799.  socket_recv
  9800.  socket_recvfrom
  9801.  socket_recvmsg
  9802.  socket_select
  9803.  socket_send
  9804.  socket_sendmsg
  9805.  socket_sendto
  9806.  socket_set_block
  9807.  socket_set_nonblock
  9808.  socket_set_option
  9809.  socket_shutdown
  9810.  socket_strerror
  9811.  socket_write
  9812.  socket_writev
  9813. Streams - Stream functions
  9814.  stream_context_create
  9815.  stream_context_get_options
  9816.  stream_context_set_option
  9817.  stream_context_set_params
  9818.  stream_copy_to_stream
  9819.  stream_filter_append
  9820.  stream_filter_prepend
  9821.  stream_filter_register
  9822.  stream_get_filters
  9823.  stream_get_line
  9824.  stream_get_meta_data
  9825.  stream_get_transports
  9826.  stream_get_wrappers
  9827.  stream_register_wrapper
  9828.  stream_select
  9829.  stream_set_blocking
  9830.  stream_set_timeout
  9831.  stream_set_write_buffer
  9832.  stream_socket_accept
  9833.  stream_socket_client
  9834.  stream_socket_get_name
  9835.  stream_socket_server
  9836.  stream_wrapper_register
  9837. Strings - String functions
  9838.  addcslashes
  9839.  addslashes
  9840.  bin2hex
  9841.  chop
  9842.  chr
  9843.  chunk_split
  9844.  convert_cyr_string
  9845.  count_chars
  9846.  crc32
  9847.  crypt
  9848.  echo
  9849.  explode
  9850.  fprintf
  9851.  get_html_translation_table
  9852.  hebrev
  9853.  hebrevc
  9854.  html_entity_decode
  9855.  htmlentities
  9856.  htmlspecialchars
  9857.  implode
  9858.  join
  9859.  levenshtein
  9860.  localeconv
  9861.  ltrim
  9862.  md5_file
  9863.  md5
  9864.  metaphone
  9865.  money_format
  9866.  nl_langinfo
  9867.  nl2br
  9868.  number_format
  9869.  ord
  9870.  parse_str
  9871.  print
  9872.  printf
  9873.  quoted_printable_decode
  9874.  quotemeta
  9875.  rtrim
  9876.  setlocale
  9877.  sha1_file
  9878.  sha1
  9879.  similar_text
  9880.  soundex
  9881.  sprintf
  9882.  sscanf
  9883.  str_ireplace
  9884.  str_pad
  9885.  str_repeat
  9886.  str_replace
  9887.  str_rot13
  9888.  str_shuffle
  9889.  str_split
  9890.  str_word_count
  9891.  strcasecmp
  9892.  strchr
  9893.  strcmp
  9894.  strcoll
  9895.  strcspn
  9896.  strip_tags
  9897.  stripcslashes
  9898.  stripos
  9899.  stripslashes
  9900.  stristr
  9901.  strlen
  9902.  strnatcasecmp
  9903.  strnatcmp
  9904.  strncasecmp
  9905.  strncmp
  9906.  strpos
  9907.  strrchr
  9908.  strrev
  9909.  strripos
  9910.  strrpos
  9911.  strspn
  9912.  strstr
  9913.  strtok
  9914.  strtolower
  9915.  strtoupper
  9916.  strtr
  9917.  substr_compare
  9918.  substr_count
  9919.  substr_replace
  9920.  substr
  9921.  trim
  9922.  ucfirst
  9923.  ucwords
  9924.  vprintf
  9925.  vsprintf
  9926.  wordwrap
  9927. Sybase - Sybase functions
  9928.  sybase_affected_rows
  9929.  sybase_close
  9930.  sybase_connect
  9931.  sybase_data_seek
  9932.  sybase_deadlock_retry_count
  9933.  sybase_fetch_array
  9934.  sybase_fetch_assoc
  9935.  sybase_fetch_field
  9936.  sybase_fetch_object
  9937.  sybase_fetch_row
  9938.  sybase_field_seek
  9939.  sybase_free_result
  9940.  sybase_get_last_message
  9941.  sybase_min_client_severity
  9942.  sybase_min_error_severity
  9943.  sybase_min_message_severity
  9944.  sybase_min_server_severity
  9945.  sybase_num_fields
  9946.  sybase_num_rows
  9947.  sybase_pconnect
  9948.  sybase_query
  9949.  sybase_result
  9950.  sybase_select_db
  9951.  sybase_set_message_handler
  9952.  sybase_unbuffered_query
  9953. tidy - tidy Functions
  9954.  tidy_access_count
  9955.  tidy_clean_repair
  9956.  tidy_config_count
  9957.  tidy_diagnose
  9958.  tidy_error_count
  9959.  tidy_get_body
  9960.  tidy_get_config
  9961.  tidy_get_error_buffer
  9962.  tidy_get_head
  9963.  tidy_get_html_ver
  9964.  tidy_get_html
  9965.  tidy_get_output
  9966.  tidy_get_release
  9967.  tidy_get_root
  9968.  tidy_get_status
  9969.  tidy_getopt
  9970.  tidy_is_xhtml
  9971.  tidy_load_config
  9972.  tidy_parse_file
  9973.  tidy_parse_string
  9974.  tidy_repair_file
  9975.  tidy_repair_string
  9976.  tidy_reset_config
  9977.  tidy_save_config
  9978.  tidy_set_encoding
  9979.  tidy_setopt
  9980.  tidy_warning_count
  9981. Tokenizer - Tokenizer functions
  9982.  token_get_all
  9983.  token_name
  9984. URLs - URL Functions
  9985.  base64_decode
  9986.  base64_encode
  9987.  get_meta_tags
  9988.  http_build_query
  9989.  parse_url
  9990.  rawurldecode
  9991.  rawurlencode
  9992.  urldecode
  9993.  urlencode
  9994. Variables - Variable Functions
  9995.  doubleval
  9996.  empty
  9997.  floatval
  9998.  get_defined_vars
  9999.  get_resource_type
  10000.  gettype
  10001.  import_request_variables
  10002.  intval
  10003.  is_array
  10004.  is_bool
  10005.  is_callable
  10006.  is_double
  10007.  is_float
  10008.  is_int
  10009.  is_integer
  10010.  is_long
  10011.  is_null
  10012.  is_numeric
  10013.  is_object
  10014.  is_real
  10015.  is_resource
  10016.  is_scalar
  10017.  is_string
  10018.  isset
  10019.  print_r
  10020.  serialize
  10021.  settype
  10022.  strval
  10023.  unserialize
  10024.  unset
  10025.  var_dump
  10026.  var_export
  10027. vpopmail - vpopmail functions
  10028.  vpopmail_add_alias_domain_ex
  10029.  vpopmail_add_alias_domain
  10030.  vpopmail_add_domain_ex
  10031.  vpopmail_add_domain
  10032.  vpopmail_add_user
  10033.  vpopmail_alias_add
  10034.  vpopmail_alias_del_domain
  10035.  vpopmail_alias_del
  10036.  vpopmail_alias_get_all
  10037.  vpopmail_alias_get
  10038.  vpopmail_auth_user
  10039.  vpopmail_del_domain_ex
  10040.  vpopmail_del_domain
  10041.  vpopmail_del_user
  10042.  vpopmail_error
  10043.  vpopmail_passwd
  10044.  vpopmail_set_user_quota
  10045. W32api - W32api functions
  10046.  w32api_deftype
  10047.  w32api_init_dtype
  10048.  w32api_invoke_function
  10049.  w32api_register_function
  10050.  w32api_set_call_method
  10051. WDDX - WDDX Functions
  10052.  wddx_add_vars
  10053.  wddx_deserialize
  10054.  wddx_packet_end
  10055.  wddx_packet_start
  10056.  wddx_serialize_value
  10057.  wddx_serialize_vars
  10058. XML - XML parser functions
  10059.  utf8_decode
  10060.  utf8_encode
  10061.  xml_error_string
  10062.  xml_get_current_byte_index
  10063.  xml_get_current_column_number
  10064.  xml_get_current_line_number
  10065.  xml_get_error_code
  10066.  xml_parse_into_struct
  10067.  xml_parse
  10068.  xml_parser_create_ns
  10069.  xml_parser_create
  10070.  xml_parser_free
  10071.  xml_parser_get_option
  10072.  xml_parser_set_option
  10073.  xml_set_character_data_handler
  10074.  xml_set_default_handler
  10075.  xml_set_element_handler
  10076.  xml_set_end_namespace_decl_handler
  10077.  xml_set_external_entity_ref_handler
  10078.  xml_set_notation_decl_handler
  10079.  xml_set_object
  10080.  xml_set_processing_instruction_handler
  10081.  xml_set_start_namespace_decl_handler
  10082.  xml_set_unparsed_entity_decl_handler
  10083. XML-RPC - XML-RPC functions
  10084.  xmlrpc_decode_request
  10085.  xmlrpc_decode
  10086.  xmlrpc_encode_request
  10087.  xmlrpc_encode
  10088.  xmlrpc_get_type
  10089.  xmlrpc_parse_method_descriptions
  10090.  xmlrpc_server_add_introspection_data
  10091.  xmlrpc_server_call_method
  10092.  xmlrpc_server_create
  10093.  xmlrpc_server_destroy
  10094.  xmlrpc_server_register_introspection_callback
  10095.  xmlrpc_server_register_method
  10096.  xmlrpc_set_type
  10097. XSLT - XSLT functions
  10098.  xslt_create
  10099.  xslt_errno
  10100.  xslt_error
  10101.  xslt_free
  10102.  xslt_process
  10103.  xslt_set_base
  10104.  xslt_set_encoding
  10105.  xslt_set_error_handler
  10106.  xslt_set_log
  10107.  xslt_set_sax_handler
  10108.  xslt_set_sax_handlers
  10109.  xslt_set_scheme_handler
  10110.  xslt_set_scheme_handlers
  10111. YAZ - YAZ functions
  10112.  yaz_addinfo
  10113.  yaz_ccl_conf
  10114.  yaz_ccl_parse
  10115.  yaz_close
  10116.  yaz_connect
  10117.  yaz_database
  10118.  yaz_element
  10119.  yaz_errno
  10120.  yaz_error
  10121.  yaz_get_option
  10122.  yaz_hits
  10123.  yaz_itemorder
  10124.  yaz_present
  10125.  yaz_range
  10126.  yaz_record
  10127.  yaz_scan_result
  10128.  yaz_scan
  10129.  yaz_schema
  10130.  yaz_search
  10131.  yaz_set_option
  10132.  yaz_sort
  10133.  yaz_syntax
  10134.  yaz_wait
  10135. YP/NIS - YP/NIS Functions
  10136.  yp_all
  10137.  yp_cat
  10138.  yp_err_string
  10139.  yp_errno
  10140.  yp_first
  10141.  yp_get_default_domain
  10142.  yp_master
  10143.  yp_match
  10144.  yp_next
  10145.  yp_order
  10146. Zip - Zip File Functions (Read Only Access)
  10147.  zip_close
  10148.  zip_entry_close
  10149.  zip_entry_compressedsize
  10150.  zip_entry_compressionmethod
  10151.  zip_entry_filesize
  10152.  zip_entry_name
  10153.  zip_entry_open
  10154.  zip_entry_read
  10155.  zip_open
  10156.  zip_read
  10157. Zlib - Zlib Compression Functions
  10158.  gzclose
  10159.  gzcompress
  10160.  gzdeflate
  10161.  gzencode
  10162.  gzeof
  10163.  gzfile
  10164.  gzgetc
  10165.  gzgets
  10166.  gzgetss
  10167.  gzinflate
  10168.  gzopen
  10169.  gzpassthru
  10170.  gzputs
  10171.  gzread
  10172.  gzrewind
  10173.  gzseek
  10174.  gztell
  10175.  gzuncompress
  10176.  gzwrite
  10177.  readgzfile
  10178.  zlib_get_coding_type
  10179. ;
  10180. ;
  10181. ; -----------------------------------------------------------------------------
  10182. ; KeyWords
  10183. ; -----------------------------------------------------------------------------
  10184. [KeyWords]
  10185. ; predefined magical constants
  10186. __LINE__
  10187. __FILE__
  10188. __FUNCTION__
  10189. __CLASS__
  10190. ; core predefined constants
  10191. PHP_VERSION
  10192. PHP_OS
  10193. DEFAULT_INCLUDE_PATH
  10194. PEAR_INSTALL_DIR
  10195. PEAR_EXTENSION_DIR
  10196. PHP_EXTENSION_DIR
  10197. PHP_BINDIR
  10198. PHP_LIBDIR
  10199. PHP_DATADIR
  10200. PHP_SYSCONFDIR
  10201. PHP_LOCALSTATEDIR
  10202. PHP_CONFIG_FILE_PATH
  10203. PHP_OUTPUT_HANDLER_START
  10204. PHP_OUTPUT_HANDLER_CONT
  10205. PHP_OUTPUT_HANDLER_END
  10206. E_ERROR
  10207. E_WARNING
  10208. E_PARSE
  10209. E_NOTICE
  10210. E_CORE_ERROR
  10211. E_CORE_WARNING
  10212. E_COMPILE_ERROR
  10213. E_COMPILE_WARNING
  10214. E_USER_ERROR
  10215. E_USER_WARNING
  10216. E_USER_NOTICE
  10217. E_ALL
  10218. ; standard predefined constants
  10219. EXTR_OVERWRITE
  10220. EXTR_SKIP
  10221. EXTR_PREFIX_SAME
  10222. EXTR_PREFIX_ALL
  10223. EXTR_PREFIX_INVALID
  10224. EXTR_PREFIX_IF_EXISTS
  10225. EXTR_IF_EXISTS
  10226. SORT_ASC
  10227. SORT_DESC
  10228. SORT_REGULAR
  10229. SORT_NUMERIC
  10230. SORT_STRING
  10231. CASE_LOWER
  10232. CASE_UPPER
  10233. COUNT_NORMAL
  10234. COUNT_RECURSIVE
  10235. ASSERT_ACTIVE
  10236. ASSERT_CALLBACK
  10237. ASSERT_BAIL
  10238. ASSERT_WARNING
  10239. ASSERT_QUIET_EVAL
  10240. CONNECTION_ABORTED
  10241. CONNECTION_NORMAL
  10242. CONNECTION_TIMEOUT
  10243. INI_USER
  10244. INI_PERDIR
  10245. INI_SYSTEM
  10246. INI_ALL
  10247. M_E
  10248. M_LOG2E
  10249. M_LOG10E
  10250. M_LN2
  10251. M_LN10
  10252. M_PI
  10253. M_PI_2
  10254. M_PI_4
  10255. M_1_PI
  10256. M_2_PI
  10257. M_2_SQRTPI
  10258. M_SQRT2
  10259. M_SQRT1_2
  10260. CRYPT_SALT_LENGTH
  10261. CRYPT_STD_DES
  10262. CRYPT_EXT_DES
  10263. CRYPT_MD5
  10264. CRYPT_BLOWFISH
  10265. DIRECTORY_SEPARATOR
  10266. SEEK_SET
  10267. SEEK_CUR
  10268. SEEK_END
  10269. LOCK_SH
  10270. LOCK_EX
  10271. LOCK_UN
  10272. LOCK_NB
  10273. HTML_SPECIALCHARS
  10274. HTML_ENTITIES
  10275. ENT_COMPAT
  10276. ENT_QUOTES
  10277. ENT_NOQUOTES
  10278. INFO_GENERAL
  10279. INFO_CREDITS
  10280. INFO_CONFIGURATION
  10281. INFO_MODULES
  10282. INFO_ENVIRONMENT
  10283. INFO_VARIABLES
  10284. INFO_LICENSE
  10285. INFO_ALL
  10286. CREDITS_GROUP
  10287. CREDITS_GENERAL
  10288. CREDITS_SAPI
  10289. CREDITS_MODULES
  10290. CREDITS_DOCS
  10291. CREDITS_FULLPAGE
  10292. CREDITS_QA
  10293. CREDITS_ALL
  10294. STR_PAD_LEFT
  10295. STR_PAD_RIGHT
  10296. STR_PAD_BOTH
  10297. PATHINFO_DIRNAME
  10298. PATHINFO_BASENAME
  10299. PATHINFO_EXTENSION
  10300. CHAR_MAX
  10301. LC_CTYPE
  10302. LC_NUMERIC
  10303. LC_TIME
  10304. LC_COLLATE
  10305. LC_MONETARY
  10306. LC_ALL
  10307. LC_MESSAGES
  10308. ABDAY_1
  10309. ABDAY_2
  10310. ABDAY_3
  10311. ABDAY_4
  10312. ABDAY_5
  10313. ABDAY_6
  10314. ABDAY_7
  10315. DAY_1
  10316. DAY_2
  10317. DAY_3
  10318. DAY_4
  10319. DAY_5
  10320. DAY_6
  10321. DAY_7
  10322. ABMON_1
  10323. ABMON_2
  10324. ABMON_3
  10325. ABMON_4
  10326. ABMON_5
  10327. ABMON_6
  10328. ABMON_7
  10329. ABMON_8
  10330. ABMON_9
  10331. ABMON_10
  10332. ABMON_11
  10333. ABMON_12
  10334. MON_1
  10335. MON_2
  10336. MON_3
  10337. MON_4
  10338. MON_5
  10339. MON_6
  10340. MON_7
  10341. MON_8
  10342. MON_9
  10343. MON_10
  10344. MON_11
  10345. MON_12
  10346. AM_STR
  10347. PM_STR
  10348. D_T_FMT
  10349. D_FMT
  10350. T_FMT
  10351. T_FMT_AMPM
  10352. ERA
  10353. ERA_YEAR
  10354. ERA_D_T_FMT
  10355. ERA_D_FMT
  10356. ERA_T_FMT
  10357. ALT_DIGITS
  10358. INT_CURR_SYMBOL
  10359. CURRENCY_SYMBOL
  10360. CRNCYSTR
  10361. MON_DECIMAL_POINT
  10362. MON_THOUSANDS_SEP
  10363. MON_GROUPING
  10364. POSITIVE_SIGN
  10365. NEGATIVE_SIGN
  10366. INT_FRAC_DIGITS
  10367. FRAC_DIGITS
  10368. P_CS_PRECEDES
  10369. P_SEP_BY_SPACE
  10370. N_CS_PRECEDES
  10371. N_SEP_BY_SPACE
  10372. P_SIGN_POSN
  10373. N_SIGN_POSN
  10374. DECIMAL_POINT
  10375. RADIXCHAR
  10376. THOUSANDS_SEP
  10377. THOUSEP
  10378. GROUPING
  10379. YESEXPR
  10380. NOEXPR
  10381. YESSTR
  10382. NOSTR
  10383. CODESET
  10384. LOG_EMERG
  10385. LOG_ALERT
  10386. LOG_CRIT
  10387. LOG_ERR
  10388. LOG_WARNING
  10389. LOG_NOTICE
  10390. LOG_INFO
  10391. LOG_DEBUG
  10392. LOG_KERN
  10393. LOG_USER
  10394. LOG_MAIL
  10395. LOG_DAEMON
  10396. LOG_AUTH
  10397. LOG_SYSLOG
  10398. LOG_LPR
  10399. LOG_NEWS
  10400. LOG_UUCP
  10401. LOG_CRON
  10402. LOG_AUTHPRIV
  10403. LOG_LOCAL0
  10404. LOG_LOCAL1
  10405. LOG_LOCAL2
  10406. LOG_LOCAL3
  10407. LOG_LOCAL4
  10408. LOG_LOCAL5
  10409. LOG_LOCAL6
  10410. LOG_LOCAL7
  10411. LOG_PID
  10412. LOG_CONS
  10413. LOG_ODELAY
  10414. LOG_NDELAY
  10415. LOG_NOWAIT
  10416. LOG_PERROR
  10417. ; predefined variables
  10418. $GLOBALS
  10419. $_SERVER
  10420. $_SERVER['PHP_SELF']
  10421. $_SERVER['argv']
  10422. $_SERVER['argc']
  10423. $_SERVER['GATEWAY_INTERFACE']
  10424. $_SERVER['SERVER_NAME']
  10425. $_SERVER['SERVER_SOFTWARE']
  10426. $_SERVER['SERVER_PROTOCOL']
  10427. $_SERVER['REQUEST_METHOD']
  10428. $_SERVER['QUERY_STRING']
  10429. $_SERVER['DOCUMENT_ROOT']
  10430. $_SERVER['HTTP_ACCEPT']
  10431. $_SERVER['HTTP_ACCEPT_CHARSET']
  10432. $_SERVER['HTTP_ACCEPT_ENCODING']
  10433. $_SERVER['HTTP_ACCEPT_LANGUAGE']
  10434. $_SERVER['HTTP_CONNECTION']
  10435. $_SERVER['HTTP_HOST']
  10436. $_SERVER['HTTP_REFERER']
  10437. $_SERVER['HTTP_USER_AGENT']
  10438. $_SERVER['REMOTE_ADDR']
  10439. $_SERVER['REMOTE_HOST']
  10440. $_SERVER['REMOTE_PORT']
  10441. $_SERVER['SCRIPT_FILENAME']
  10442. $_SERVER['SERVER_ADMIN']
  10443. $_SERVER['SERVER_PORT']
  10444. $_SERVER['SERVER_SIGNATURE']
  10445. $_SERVER['PATH_TRANSLATED']
  10446. $_SERVER['SCRIPT_NAME']
  10447. $_SERVER['REQUEST_URI']
  10448. $_SERVER['PHP_AUTH_USER']
  10449. $_SERVER['PHP_AUTH_PW']
  10450. $_SERVER['AUTH_TYPE']
  10451. $_ENV
  10452. $_GET
  10453. $_POST
  10454. $_COOKIE
  10455. $_REQUEST
  10456. $_FILES
  10457. $_SESSION
  10458. apache_child_terminate()
  10459. apache_get_version()
  10460. apache_lookup_uri()
  10461. apache_note()
  10462. apache_request_headers()
  10463. apache_response_headers()
  10464. apache_setenv()
  10465. ascii2ebcdic()
  10466. ebcdic2ascii()
  10467. getallheaders()
  10468. virtual()
  10469. array_change_key_case()
  10470. array_chunk()
  10471. array_combine()
  10472. array_count_values()
  10473. array_diff_assoc()
  10474. array_diff_uassoc()
  10475. array_diff()
  10476. array_fill()
  10477. array_filter()
  10478. array_flip()
  10479. array_intersect_assoc()
  10480. array_intersect()
  10481. array_key_exists()
  10482. array_keys()
  10483. array_map()
  10484. array_merge_recursive()
  10485. array_merge()
  10486. array_multisort()
  10487. array_pad()
  10488. array_pop()
  10489. array_push()
  10490. array_rand()
  10491. array_reduce()
  10492. array_reverse()
  10493. array_search()
  10494. array_shift()
  10495. array_slice()
  10496. array_splice()
  10497. array_sum()
  10498. array_udiff_assoc()
  10499. array_udiff_uassoc()
  10500. array_udiff()
  10501. array_unique()
  10502. array_unshift()
  10503. array_values()
  10504. array_walk()
  10505. array()
  10506. arsort()
  10507. asort()
  10508. compact()
  10509. count()
  10510. current()
  10511. each()
  10512. end()
  10513. extract()
  10514. in_array()
  10515. key()
  10516. krsort()
  10517. ksort()
  10518. list()
  10519. natcasesort()
  10520. natsort()
  10521. next()
  10522. pos()
  10523. prev()
  10524. range()
  10525. reset()
  10526. rsort()
  10527. shuffle()
  10528. sizeof()
  10529. sort()
  10530. uasort()
  10531. uksort()
  10532. usort()
  10533. aspell_check_raw()
  10534. aspell_check()
  10535. aspell_new()
  10536. aspell_suggest()
  10537. bcadd()
  10538. bccomp()
  10539. bcdiv()
  10540. bcmod()
  10541. bcmul()
  10542. bcpow()
  10543. bcpowmod()
  10544. bcscale()
  10545. bcsqrt()
  10546. bcsub()
  10547. bzclose()
  10548. bzcompress()
  10549. bzdecompress()
  10550. bzerrno()
  10551. bzerror()
  10552. bzerrstr()
  10553. bzflush()
  10554. bzopen()
  10555. bzread()
  10556. bzwrite()
  10557. cal_days_in_month()
  10558. cal_from_jd()
  10559. cal_info()
  10560. cal_to_jd()
  10561. easter_date()
  10562. easter_days()
  10563. FrenchToJD()
  10564. GregorianToJD()
  10565. JDDayOfWeek()
  10566. JDMonthName()
  10567. JDToFrench()
  10568. JDToGregorian()
  10569. jdtojewish()
  10570. JDToJulian()
  10571. jdtounix()
  10572. JewishToJD()
  10573. JulianToJD()
  10574. unixtojd()
  10575. ccvs_add()
  10576. ccvs_auth()
  10577. ccvs_command()
  10578. ccvs_count()
  10579. ccvs_delete()
  10580. ccvs_done()
  10581. ccvs_init()
  10582. ccvs_lookup()
  10583. ccvs_new()
  10584. ccvs_report()
  10585. ccvs_return()
  10586. ccvs_reverse()
  10587. ccvs_sale()
  10588. ccvs_status()
  10589. ccvs_textvalue()
  10590. ccvs_void()
  10591. COM()
  10592. VARIANT()
  10593. com_addref()
  10594. com_get()
  10595. com_invoke()
  10596. com_isenum()
  10597. com_load_typelib()
  10598. com_load()
  10599. com_propget()
  10600. com_propput()
  10601. com_propset()
  10602. com_release()
  10603. com_set()
  10604. call_user_method_array()
  10605. call_user_method()
  10606. class_exists()
  10607. get_class_methods()
  10608. get_class_vars()
  10609. get_class()
  10610. get_declared_classes()
  10611. get_object_vars()
  10612. get_parent_class()
  10613. is_a()
  10614. is_subclass_of()
  10615. method_exists()
  10616. cpdf_add_annotation()
  10617. cpdf_add_outline()
  10618. cpdf_arc()
  10619. cpdf_begin_text()
  10620. cpdf_circle()
  10621. cpdf_clip()
  10622. cpdf_close()
  10623. cpdf_closepath_fill_stroke()
  10624. cpdf_closepath_stroke()
  10625. cpdf_closepath()
  10626. cpdf_continue_text()
  10627. cpdf_curveto()
  10628. cpdf_end_text()
  10629. cpdf_fill_stroke()
  10630. cpdf_fill()
  10631. cpdf_finalize_page()
  10632. cpdf_finalize()
  10633. cpdf_global_set_document_limits()
  10634. cpdf_import_jpeg()
  10635. cpdf_lineto()
  10636. cpdf_moveto()
  10637. cpdf_newpath()
  10638. cpdf_open()
  10639. cpdf_output_buffer()
  10640. cpdf_page_init()
  10641. cpdf_place_inline_image()
  10642. cpdf_rect()
  10643. cpdf_restore()
  10644. cpdf_rlineto()
  10645. cpdf_rmoveto()
  10646. cpdf_rotate_text()
  10647. cpdf_rotate()
  10648. cpdf_save_to_file()
  10649. cpdf_save()
  10650. cpdf_scale()
  10651. cpdf_set_action_url()
  10652. cpdf_set_char_spacing()
  10653. cpdf_set_creator()
  10654. cpdf_set_current_page()
  10655. cpdf_set_font_directories()
  10656. cpdf_set_font_map_file()
  10657. cpdf_set_font()
  10658. cpdf_set_horiz_scaling()
  10659. cpdf_set_keywords()
  10660. cpdf_set_leading()
  10661. cpdf_set_page_animation()
  10662. cpdf_set_subject()
  10663. cpdf_set_text_matrix()
  10664. cpdf_set_text_pos()
  10665. cpdf_set_text_rendering()
  10666. cpdf_set_text_rise()
  10667. cpdf_set_title()
  10668. cpdf_set_viewer_preferences()
  10669. cpdf_set_word_spacing()
  10670. cpdf_setdash()
  10671. cpdf_setflat()
  10672. cpdf_setgray_fill()
  10673. cpdf_setgray_stroke()
  10674. cpdf_setgray()
  10675. cpdf_setlinecap()
  10676. cpdf_setlinejoin()
  10677. cpdf_setlinewidth()
  10678. cpdf_setmiterlimit()
  10679. cpdf_setrgbcolor_fill()
  10680. cpdf_setrgbcolor_stroke()
  10681. cpdf_setrgbcolor()
  10682. cpdf_show_xy()
  10683. cpdf_show()
  10684. cpdf_stringwidth()
  10685. cpdf_stroke()
  10686. cpdf_text()
  10687. cpdf_translate()
  10688. crack_check()
  10689. crack_closedict()
  10690. crack_getlastmessage()
  10691. crack_opendict()
  10692. curl_close()
  10693. curl_errno()
  10694. curl_error()
  10695. curl_exec()
  10696. curl_getinfo()
  10697. curl_init()
  10698. curl_multi_add_handle()
  10699. curl_multi_close()
  10700. curl_multi_exec()
  10701. curl_multi_getcontent()
  10702. curl_multi_info_read()
  10703. curl_multi_init()
  10704. curl_multi_remove_handle()
  10705. curl_multi_select()
  10706. curl_setopt()
  10707. curl_version()
  10708. cybercash_base64_decode()
  10709. cybercash_base64_encode()
  10710. cybercash_decr()
  10711. cybercash_encr()
  10712. cyrus_authenticate()
  10713. cyrus_bind()
  10714. cyrus_close()
  10715. cyrus_connect()
  10716. cyrus_query()
  10717. cyrus_unbind()
  10718. ctype_alnum()
  10719. ctype_alpha()
  10720. ctype_cntrl()
  10721. ctype_digit()
  10722. ctype_graph()
  10723. ctype_lower()
  10724. ctype_print()
  10725. ctype_punct()
  10726. ctype_space()
  10727. ctype_upper()
  10728. ctype_xdigit()
  10729. dba_close()
  10730. dba_delete()
  10731. dba_exists()
  10732. dba_fetch()
  10733. dba_firstkey()
  10734. dba_handlers()
  10735. dba_insert()
  10736. dba_key_split()
  10737. dba_list()
  10738. dba_nextkey()
  10739. dba_open()
  10740. dba_optimize()
  10741. dba_popen()
  10742. dba_replace()
  10743. dba_sync()
  10744. checkdate()
  10745. date()
  10746. getdate()
  10747. gettimeofday()
  10748. gmdate()
  10749. gmmktime()
  10750. gmstrftime()
  10751. localtime()
  10752. microtime()
  10753. mktime()
  10754. strftime()
  10755. strtotime()
  10756. time()
  10757. dbase_add_record()
  10758. dbase_close()
  10759. dbase_create()
  10760. dbase_delete_record()
  10761. dbase_get_header_info()
  10762. dbase_get_record_with_names()
  10763. dbase_get_record()
  10764. dbase_numfields()
  10765. dbase_numrecords()
  10766. dbase_open()
  10767. dbase_pack()
  10768. dbase_replace_record()
  10769. dblist()
  10770. dbmclose()
  10771. dbmdelete()
  10772. dbmexists()
  10773. dbmfetch()
  10774. dbmfirstkey()
  10775. dbminsert()
  10776. dbmnextkey()
  10777. dbmopen()
  10778. dbmreplace()
  10779. dbx_close()
  10780. dbx_compare()
  10781. dbx_connect()
  10782. dbx_error()
  10783. dbx_escape_string()
  10784. dbx_fetch_row()
  10785. dbx_query()
  10786. dbx_sort()
  10787. dbplus_add()
  10788. dbplus_aql()
  10789. dbplus_chdir()
  10790. dbplus_close()
  10791. dbplus_curr()
  10792. dbplus_errcode()
  10793. dbplus_errno()
  10794. dbplus_find()
  10795. dbplus_first()
  10796. dbplus_flush()
  10797. dbplus_freealllocks()
  10798. dbplus_freelock()
  10799. dbplus_freerlocks()
  10800. dbplus_getlock()
  10801. dbplus_getunique()
  10802. dbplus_info()
  10803. dbplus_last()
  10804. dbplus_lockrel()
  10805. dbplus_next()
  10806. dbplus_open()
  10807. dbplus_prev()
  10808. dbplus_rchperm()
  10809. dbplus_rcreate()
  10810. dbplus_rcrtexact()
  10811. dbplus_rcrtlike()
  10812. dbplus_resolve()
  10813. dbplus_restorepos()
  10814. dbplus_rkeys()
  10815. dbplus_ropen()
  10816. dbplus_rquery()
  10817. dbplus_rrename()
  10818. dbplus_rsecindex()
  10819. dbplus_runlink()
  10820. dbplus_rzap()
  10821. dbplus_savepos()
  10822. dbplus_setindex()
  10823. dbplus_setindexbynumber()
  10824. dbplus_sql()
  10825. dbplus_tcl()
  10826. dbplus_tremove()
  10827. dbplus_undo()
  10828. dbplus_undoprepare()
  10829. dbplus_unlockrel()
  10830. dbplus_unselect()
  10831. dbplus_update()
  10832. dbplus_xlockrel()
  10833. dbplus_xunlockrel()
  10834. dio_close()
  10835. dio_fcntl()
  10836. dio_open()
  10837. dio_read()
  10838. dio_seek()
  10839. dio_stat()
  10840. dio_tcsetattr()
  10841. dio_truncate()
  10842. dio_write()
  10843. chdir()
  10844. chroot()
  10845. dir()
  10846. closedir()
  10847. getcwd()
  10848. opendir()
  10849. readdir()
  10850. rewinddir()
  10851. scandir()
  10852. DomAttribute->name()
  10853. DomAttribute->specified()
  10854. DomAttribute->value()
  10855. DomDocument->add_root [deprecated]()
  10856. DomDocument->create_attribute()
  10857. DomDocument->create_cdata_section()
  10858. DomDocument->create_comment()
  10859. DomDocument->create_element_ns()
  10860. DomDocument->create_element()
  10861. DomDocument->create_entity_reference()
  10862. DomDocument->create_processing_instruction()
  10863. DomDocument->create_text_node()
  10864. DomDocument->doctype()
  10865. DomDocument->document_element()
  10866. DomDocument->dump_file()
  10867. DomDocument->dump_mem()
  10868. DomDocument->get_element_by_id()
  10869. DomDocument->get_elements_by_tagname()
  10870. DomDocument->html_dump_mem()
  10871. DomDocument->xinclude()
  10872. DomDocumentType->entities()
  10873. DomDocumentType->internal_subset()
  10874. DomDocumentType->name()
  10875. DomDocumentType->notations()
  10876. DomDocumentType->public_id()
  10877. DomDocumentType->system_id()
  10878. DomElement->get_attribute_node()
  10879. DomElement->get_attribute()
  10880. DomElement->get_elements_by_tagname()
  10881. DomElement->has_attribute()
  10882. DomElement->remove_attribute()
  10883. DomElement->set_attribute()
  10884. DomElement->tagname()
  10885. DomNode->add_namespace()
  10886. DomNode->append_child()
  10887. DomNode->append_sibling()
  10888. DomNode->attributes()
  10889. DomNode->child_nodes()
  10890. DomNode->clone_node()
  10891. DomNode->dump_node()
  10892. DomNode->first_child()
  10893. DomNode->get_content()
  10894. DomNode->has_attributes()
  10895. DomNode->has_child_nodes()
  10896. DomNode->insert_before()
  10897. DomNode->is_blank_node()
  10898. DomNode->last_child()
  10899. DomNode->next_sibling()
  10900. DomNode->node_name()
  10901. DomNode->node_type()
  10902. DomNode->node_value()
  10903. DomNode->owner_document()
  10904. DomNode->parent_node()
  10905. DomNode->prefix()
  10906. DomNode->previous_sibling()
  10907. DomNode->remove_child()
  10908. DomNode->replace_child()
  10909. DomNode->replace_node()
  10910. DomNode->set_content()
  10911. DomNode->set_name()
  10912. DomNode->set_namespace()
  10913. DomNode->unlink_node()
  10914. DomProcessingInstruction->data()
  10915. DomProcessingInstruction->target()
  10916. DomXsltStylesheet->process()
  10917. DomXsltStylesheet->result_dump_file()
  10918. DomXsltStylesheet->result_dump_mem()
  10919. domxml_new_doc()
  10920. domxml_open_file()
  10921. domxml_open_mem()
  10922. domxml_version()
  10923. domxml_xmltree()
  10924. domxml_xslt_stylesheet_doc()
  10925. domxml_xslt_stylesheet_file()
  10926. domxml_xslt_stylesheet()
  10927. xpath_eval_expression()
  10928. xpath_eval()
  10929. xpath_new_context()
  10930. xptr_eval()
  10931. xptr_new_context()
  10932. dotnet_load()
  10933. debug_backtrace()
  10934. debug_print_backtrace()
  10935. error_log()
  10936. error_reporting()
  10937. restore_error_handler()
  10938. set_error_handler()
  10939. trigger_error()
  10940. user_error()
  10941. fam_cancel_monitor()
  10942. fam_close()
  10943. fam_monitor_collection()
  10944. fam_monitor_directory()
  10945. fam_monitor_file()
  10946. fam_next_event()
  10947. fam_open()
  10948. fam_pending()
  10949. fam_resume_monitor()
  10950. fam_suspend_monitor()
  10951. fbsql_affected_rows()
  10952. fbsql_autocommit()
  10953. fbsql_change_user()
  10954. fbsql_close()
  10955. fbsql_commit()
  10956. fbsql_connect()
  10957. fbsql_create_blob()
  10958. fbsql_create_clob()
  10959. fbsql_create_db()
  10960. fbsql_data_seek()
  10961. fbsql_database_password()
  10962. fbsql_database()
  10963. fbsql_db_query()
  10964. fbsql_db_status()
  10965. fbsql_drop_db()
  10966. fbsql_errno()
  10967. fbsql_error()
  10968. fbsql_fetch_array()
  10969. fbsql_fetch_assoc()
  10970. fbsql_fetch_field()
  10971. fbsql_fetch_lengths()
  10972. fbsql_fetch_object()
  10973. fbsql_fetch_row()
  10974. fbsql_field_flags()
  10975. fbsql_field_len()
  10976. fbsql_field_name()
  10977. fbsql_field_seek()
  10978. fbsql_field_table()
  10979. fbsql_field_type()
  10980. fbsql_free_result()
  10981. fbsql_get_autostart_info()
  10982. fbsql_hostname()
  10983. fbsql_insert_id()
  10984. fbsql_list_dbs()
  10985. fbsql_list_fields()
  10986. fbsql_list_tables()
  10987. fbsql_next_result()
  10988. fbsql_num_fields()
  10989. fbsql_num_rows()
  10990. fbsql_password()
  10991. fbsql_pconnect()
  10992. fbsql_query()
  10993. fbsql_read_blob()
  10994. fbsql_read_clob()
  10995. fbsql_result()
  10996. fbsql_rollback()
  10997. fbsql_select_db()
  10998. fbsql_set_lob_mode()
  10999. fbsql_set_transaction()
  11000. fbsql_start_db()
  11001. fbsql_stop_db()
  11002. fbsql_tablename()
  11003. fbsql_username()
  11004. fbsql_warnings()
  11005. filepro_fieldcount()
  11006. filepro_fieldname()
  11007. filepro_fieldtype()
  11008. filepro_fieldwidth()
  11009. filepro_retrieve()
  11010. filepro_rowcount()
  11011. filepro()
  11012. basename()
  11013. chgrp()
  11014. chmod()
  11015. chown()
  11016. clearstatcache()
  11017. copy()
  11018. delete()
  11019. dirname()
  11020. disk_free_space()
  11021. disk_total_space()
  11022. diskfreespace()
  11023. fclose()
  11024. feof()
  11025. fflush()
  11026. fgetc()
  11027. fgetcsv()
  11028. fgets()
  11029. fgetss()
  11030. file_exists()
  11031. file_get_contents()
  11032. file_put_contents()
  11033. file()
  11034. fileatime()
  11035. filectime()
  11036. filegroup()
  11037. fileinode()
  11038. filemtime()
  11039. fileowner()
  11040. fileperms()
  11041. filesize()
  11042. filetype()
  11043. flock()
  11044. fnmatch()
  11045. fopen()
  11046. fpassthru()
  11047. fputs()
  11048. fread()
  11049. fscanf()
  11050. fseek()
  11051. fstat()
  11052. ftell()
  11053. ftruncate()
  11054. fwrite()
  11055. glob()
  11056. is_dir()
  11057. is_executable()
  11058. is_file()
  11059. is_link()
  11060. is_readable()
  11061. is_uploaded_file()
  11062. is_writable()
  11063. is_writeable()
  11064. link()
  11065. linkinfo()
  11066. lstat()
  11067. mkdir()
  11068. move_uploaded_file()
  11069. parse_ini_file()
  11070. pathinfo()
  11071. pclose()
  11072. popen()
  11073. readfile()
  11074. readlink()
  11075. realpath()
  11076. rename()
  11077. rewind()
  11078. rmdir()
  11079. set_file_buffer()
  11080. stat()
  11081. symlink()
  11082. tempnam()
  11083. tmpfile()
  11084. touch()
  11085. umask()
  11086. unlink()
  11087. fdf_add_doc_javascript()
  11088. fdf_add_template()
  11089. fdf_close()
  11090. fdf_create()
  11091. fdf_enum_values()
  11092. fdf_errno()
  11093. fdf_error()
  11094. fdf_get_ap()
  11095. fdf_get_attachment()
  11096. fdf_get_encoding()
  11097. fdf_get_file()
  11098. fdf_get_flags()
  11099. fdf_get_opt()
  11100. fdf_get_status()
  11101. fdf_get_value()
  11102. fdf_get_version()
  11103. fdf_header()
  11104. fdf_next_field_name()
  11105. fdf_open_string()
  11106. fdf_open()
  11107. fdf_remove_item()
  11108. fdf_save_string()
  11109. fdf_save()
  11110. fdf_set_ap()
  11111. fdf_set_encoding()
  11112. fdf_set_file()
  11113. fdf_set_flags()
  11114. fdf_set_javascript_action()
  11115. fdf_set_opt()
  11116. fdf_set_status()
  11117. fdf_set_submit_form_action()
  11118. fdf_set_target_frame()
  11119. fdf_set_value()
  11120. fdf_set_version()
  11121. fribidi_log2vis()
  11122. ftp_alloc()
  11123. ftp_cdup()
  11124. ftp_chdir()
  11125. ftp_chmod()
  11126. ftp_close()
  11127. ftp_connect()
  11128. ftp_delete()
  11129. ftp_exec()
  11130. ftp_fget()
  11131. ftp_fput()
  11132. ftp_get_option()
  11133. ftp_get()
  11134. ftp_login()
  11135. ftp_mdtm()
  11136. ftp_mkdir()
  11137. ftp_nb_continue()
  11138. ftp_nb_fget()
  11139. ftp_nb_fput()
  11140. ftp_nb_get()
  11141. ftp_nb_put()
  11142. ftp_nlist()
  11143. ftp_pasv()
  11144. ftp_put()
  11145. ftp_pwd()
  11146. ftp_quit()
  11147. ftp_raw()
  11148. ftp_rawlist()
  11149. ftp_rename()
  11150. ftp_rmdir()
  11151. ftp_set_option()
  11152. ftp_site()
  11153. ftp_size()
  11154. ftp_ssl_connect()
  11155. ftp_systype()
  11156. call_user_func_array()
  11157. call_user_func()
  11158. create_function()
  11159. func_get_arg()
  11160. func_get_args()
  11161. func_num_args()
  11162. function_exists()
  11163. get_defined_functions()
  11164. register_shutdown_function()
  11165. register_tick_function()
  11166. unregister_tick_function()
  11167. bind_textdomain_codeset()
  11168. bindtextdomain()
  11169. dcgettext()
  11170. dcngettext()
  11171. dgettext()
  11172. dngettext()
  11173. gettext()
  11174. ngettext()
  11175. textdomain()
  11176. gmp_abs()
  11177. gmp_add()
  11178. gmp_and()
  11179. gmp_clrbit()
  11180. gmp_cmp()
  11181. gmp_com()
  11182. gmp_div_q()
  11183. gmp_div_qr()
  11184. gmp_div_r()
  11185. gmp_div()
  11186. gmp_divexact()
  11187. gmp_fact()
  11188. gmp_gcd()
  11189. gmp_gcdext()
  11190. gmp_hamdist()
  11191. gmp_init()
  11192. gmp_intval()
  11193. gmp_invert()
  11194. gmp_jacobi()
  11195. gmp_legendre()
  11196. gmp_mod()
  11197. gmp_mul()
  11198. gmp_neg()
  11199. gmp_or()
  11200. gmp_perfect_square()
  11201. gmp_popcount()
  11202. gmp_pow()
  11203. gmp_powm()
  11204. gmp_prob_prime()
  11205. gmp_random()
  11206. gmp_scan0()
  11207. gmp_scan1()
  11208. gmp_setbit()
  11209. gmp_sign()
  11210. gmp_sqrt()
  11211. gmp_sqrtrm()
  11212. gmp_strval()
  11213. gmp_sub()
  11214. gmp_xor()
  11215. header()
  11216. headers_list()
  11217. headers_sent()
  11218. setcookie()
  11219. hw_Array2Objrec()
  11220. hw_changeobject()
  11221. hw_Children()
  11222. hw_ChildrenObj()
  11223. hw_Close()
  11224. hw_Connect()
  11225. hw_connection_info()
  11226. hw_cp()
  11227. hw_Deleteobject()
  11228. hw_DocByAnchor()
  11229. hw_DocByAnchorObj()
  11230. hw_Document_Attributes()
  11231. hw_Document_BodyTag()
  11232. hw_Document_Content()
  11233. hw_Document_SetContent()
  11234. hw_Document_Size()
  11235. hw_dummy()
  11236. hw_EditText()
  11237. hw_Error()
  11238. hw_ErrorMsg()
  11239. hw_Free_Document()
  11240. hw_GetAnchors()
  11241. hw_GetAnchorsObj()
  11242. hw_GetAndLock()
  11243. hw_GetChildColl()
  11244. hw_GetChildCollObj()
  11245. hw_GetChildDocColl()
  11246. hw_GetChildDocCollObj()
  11247. hw_GetObject()
  11248. hw_GetObjectByQuery()
  11249. hw_GetObjectByQueryColl()
  11250. hw_GetObjectByQueryCollObj()
  11251. hw_GetObjectByQueryObj()
  11252. hw_GetParents()
  11253. hw_GetParentsObj()
  11254. hw_getrellink()
  11255. hw_GetRemote()
  11256. hw_getremotechildren()
  11257. hw_GetSrcByDestObj()
  11258. hw_GetText()
  11259. hw_getusername()
  11260. hw_Identify()
  11261. hw_InCollections()
  11262. hw_Info()
  11263. hw_InsColl()
  11264. hw_InsDoc()
  11265. hw_insertanchors()
  11266. hw_InsertDocument()
  11267. hw_InsertObject()
  11268. hw_mapid()
  11269. hw_Modifyobject()
  11270. hw_mv()
  11271. hw_New_Document()
  11272. hw_objrec2array()
  11273. hw_Output_Document()
  11274. hw_pConnect()
  11275. hw_PipeDocument()
  11276. hw_Root()
  11277. hw_setlinkroot()
  11278. hw_stat()
  11279. hw_Unlock()
  11280. hw_Who()
  11281. hw_api_attribute->key()
  11282. hw_api_attribute->langdepvalue()
  11283. hw_api_attribute->value()
  11284. hw_api_attribute->values()
  11285. hw_api_attribute()
  11286. hw_api->checkin()
  11287. hw_api->checkout()
  11288. hw_api->children()
  11289. hw_api_content->mimetype()
  11290. hw_api_content->read()
  11291. hw_api->content()
  11292. hw_api->copy()
  11293. hw_api->dbstat()
  11294. hw_api->dcstat()
  11295. hw_api->dstanchors()
  11296. hw_api->dstofsrcanchors()
  11297. hw_api_error->count()
  11298. hw_api_error->reason()
  11299. hw_api->find()
  11300. hw_api->ftstat()
  11301. hwapi_hgcsp()
  11302. hw_api->hwstat()
  11303. hw_api->identify()
  11304. hw_api->info()
  11305. hw_api->insert()
  11306. hw_api->insertanchor()
  11307. hw_api->insertcollection()
  11308. hw_api->insertdocument()
  11309. hw_api->link()
  11310. hw_api->lock()
  11311. hw_api->move()
  11312. hw_api_content()
  11313. hw_api_object->assign()
  11314. hw_api_object->attreditable()
  11315. hw_api_object->count()
  11316. hw_api_object->insert()
  11317. hw_api_object()
  11318. hw_api_object->remove()
  11319. hw_api_object->title()
  11320. hw_api_object->value()
  11321. hw_api->object()
  11322. hw_api->objectbyanchor()
  11323. hw_api->parents()
  11324. hw_api_reason->description()
  11325. hw_api_reason->type()
  11326. hw_api->remove()
  11327. hw_api->replace()
  11328. hw_api->setcommitedversion()
  11329. hw_api->srcanchors()
  11330. hw_api->srcsofdst()
  11331. hw_api->unlock()
  11332. hw_api->user()
  11333. hw_api->userlist()
  11334. iconv_get_encoding()
  11335. iconv_mime_decode()
  11336. iconv_mime_encode()
  11337. iconv_set_encoding()
  11338. iconv_strlen()
  11339. iconv_strpos()
  11340. iconv_strrpos()
  11341. iconv_substr()
  11342. iconv()
  11343. ob_iconv_handler()
  11344. exif_imagetype()
  11345. exif_read_data()
  11346. exif_thumbnail()
  11347. gd_info()
  11348. getimagesize()
  11349. image_type_to_mime_type()
  11350. image2wbmp()
  11351. imagealphablending()
  11352. imageantialias()
  11353. imagearc()
  11354. imagechar()
  11355. imagecharup()
  11356. imagecolorallocate()
  11357. imagecolorallocatealpha()
  11358. imagecolorat()
  11359. imagecolorclosest()
  11360. imagecolorclosestalpha()
  11361. imagecolorclosesthwb()
  11362. imagecolordeallocate()
  11363. imagecolorexact()
  11364. imagecolorexactalpha()
  11365. imagecolormatch()
  11366. imagecolorresolve()
  11367. imagecolorresolvealpha()
  11368. imagecolorset()
  11369. imagecolorsforindex()
  11370. imagecolorstotal()
  11371. imagecolortransparent()
  11372. imagecopy()
  11373. imagecopymerge()
  11374. imagecopymergegray()
  11375. imagecopyresampled()
  11376. imagecopyresized()
  11377. imagecreate()
  11378. imagecreatefromgd2()
  11379. imagecreatefromgd2part()
  11380. imagecreatefromgd()
  11381. imagecreatefromgif()
  11382. imagecreatefromjpeg()
  11383. imagecreatefrompng()
  11384. imagecreatefromstring()
  11385. imagecreatefromwbmp()
  11386. imagecreatefromxbm()
  11387. imagecreatefromxpm()
  11388. imagecreatetruecolor()
  11389. imagedashedline()
  11390. imagedestroy()
  11391. imageellipse()
  11392. imagefill()
  11393. imagefilledarc()
  11394. imagefilledellipse()
  11395. imagefilledpolygon()
  11396. imagefilledrectangle()
  11397. imagefilltoborder()
  11398. imagefontheight()
  11399. imagefontwidth()
  11400. imageftbbox()
  11401. imagefttext()
  11402. imagegammacorrect()
  11403. imagegd2()
  11404. imagegd()
  11405. imagegif()
  11406. imageinterlace()
  11407. imageistruecolor()
  11408. imagejpeg()
  11409. imageline()
  11410. imageloadfont()
  11411. imagepalettecopy()
  11412. imagepng()
  11413. imagepolygon()
  11414. imagepsbbox()
  11415. imagepscopyfont()
  11416. imagepsencodefont()
  11417. imagepsextendfont()
  11418. imagepsfreefont()
  11419. imagepsloadfont()
  11420. imagepsslantfont()
  11421. imagepstext()
  11422. imagerectangle()
  11423. imagerotate()
  11424. imagesavealpha()
  11425. imagesetbrush()
  11426. imagesetpixel()
  11427. imagesetstyle()
  11428. imagesetthickness()
  11429. imagesettile()
  11430. imagestring()
  11431. imagestringup()
  11432. imagesx()
  11433. imagesy()
  11434. imagetruecolortopalette()
  11435. imagettfbbox()
  11436. imagettftext()
  11437. imagetypes()
  11438. imagewbmp()
  11439. iptcembed()
  11440. iptcparse()
  11441. jpeg2wbmp()
  11442. png2wbmp()
  11443. read_exif_data()
  11444. imap_8bit()
  11445. imap_alerts()
  11446. imap_append()
  11447. imap_base64()
  11448. imap_binary()
  11449. imap_body()
  11450. imap_bodystruct()
  11451. imap_check()
  11452. imap_clearflag_full()
  11453. imap_close()
  11454. imap_createmailbox()
  11455. imap_delete()
  11456. imap_deletemailbox()
  11457. imap_errors()
  11458. imap_expunge()
  11459. imap_fetch_overview()
  11460. imap_fetchbody()
  11461. imap_fetchheader()
  11462. imap_fetchstructure()
  11463. imap_get_quota()
  11464. imap_get_quotaroot()
  11465. imap_getacl()
  11466. imap_getmailboxes()
  11467. imap_getsubscribed()
  11468. imap_header()
  11469. imap_headerinfo()
  11470. imap_headers()
  11471. imap_last_error()
  11472. imap_list()
  11473. imap_listmailbox()
  11474. imap_listscan()
  11475. imap_listsubscribed()
  11476. imap_lsub()
  11477. imap_mail_compose()
  11478. imap_mail_copy()
  11479. imap_mail_move()
  11480. imap_mail()
  11481. imap_mailboxmsginfo()
  11482. imap_mime_header_decode()
  11483. imap_msgno()
  11484. imap_num_msg()
  11485. imap_num_recent()
  11486. imap_open()
  11487. imap_ping()
  11488. imap_qprint()
  11489. imap_renamemailbox()
  11490. imap_reopen()
  11491. imap_rfc822_parse_adrlist()
  11492. imap_rfc822_parse_headers()
  11493. imap_rfc822_write_address()
  11494. imap_scanmailbox()
  11495. imap_search()
  11496. imap_set_quota()
  11497. imap_setacl()
  11498. imap_setflag_full()
  11499. imap_sort()
  11500. imap_status()
  11501. imap_subscribe()
  11502. imap_thread()
  11503. imap_timeout()
  11504. imap_uid()
  11505. imap_undelete()
  11506. imap_unsubscribe()
  11507. imap_utf7_decode()
  11508. imap_utf7_encode()
  11509. imap_utf8()
  11510. ifx_affected_rows()
  11511. ifx_blobinfile_mode()
  11512. ifx_byteasvarchar()
  11513. ifx_close()
  11514. ifx_connect()
  11515. ifx_copy_blob()
  11516. ifx_create_blob()
  11517. ifx_create_char()
  11518. ifx_do()
  11519. ifx_error()
  11520. ifx_errormsg()
  11521. ifx_fetch_row()
  11522. ifx_fieldproperties()
  11523. ifx_fieldtypes()
  11524. ifx_free_blob()
  11525. ifx_free_char()
  11526. ifx_free_result()
  11527. ifx_get_blob()
  11528. ifx_get_char()
  11529. ifx_getsqlca()
  11530. ifx_htmltbl_result()
  11531. ifx_nullformat()
  11532. ifx_num_fields()
  11533. ifx_num_rows()
  11534. ifx_pconnect()
  11535. ifx_prepare()
  11536. ifx_query()
  11537. ifx_textasvarchar()
  11538. ifx_update_blob()
  11539. ifx_update_char()
  11540. ifxus_close_slob()
  11541. ifxus_create_slob()
  11542. ifxus_free_slob()
  11543. ifxus_open_slob()
  11544. ifxus_read_slob()
  11545. ifxus_seek_slob()
  11546. ifxus_tell_slob()
  11547. ifxus_write_slob()
  11548. ibase_add_user()
  11549. ibase_affected_rows()
  11550. ibase_blob_add()
  11551. ibase_blob_cancel()
  11552. ibase_blob_close()
  11553. ibase_blob_create()
  11554. ibase_blob_echo()
  11555. ibase_blob_get()
  11556. ibase_blob_import()
  11557. ibase_blob_info()
  11558. ibase_blob_open()
  11559. ibase_close()
  11560. ibase_commit_ret()
  11561. ibase_commit()
  11562. ibase_connect()
  11563. ibase_delete_user()
  11564. ibase_drop_db()
  11565. ibase_errcode()
  11566. ibase_errmsg()
  11567. ibase_execute()
  11568. ibase_fetch_assoc()
  11569. ibase_fetch_object()
  11570. ibase_fetch_row()
  11571. ibase_field_info()
  11572. ibase_free_event_handler()
  11573. ibase_free_query()
  11574. ibase_free_result()
  11575. ibase_gen_id()
  11576. ibase_modify_user()
  11577. ibase_name_result()
  11578. ibase_num_fields()
  11579. ibase_num_params()
  11580. ibase_param_info()
  11581. ibase_pconnect()
  11582. ibase_prepare()
  11583. ibase_query()
  11584. ibase_rollback_ret()
  11585. ibase_rollback()
  11586. ibase_set_event_handler()
  11587. ibase_timefmt()
  11588. ibase_trans()
  11589. ibase_wait_event()
  11590. ingres_autocommit()
  11591. ingres_close()
  11592. ingres_commit()
  11593. ingres_connect()
  11594. ingres_fetch_array()
  11595. ingres_fetch_object()
  11596. ingres_fetch_row()
  11597. ingres_field_length()
  11598. ingres_field_name()
  11599. ingres_field_nullable()
  11600. ingres_field_precision()
  11601. ingres_field_scale()
  11602. ingres_field_type()
  11603. ingres_num_fields()
  11604. ingres_num_rows()
  11605. ingres_pconnect()
  11606. ingres_query()
  11607. ingres_rollback()
  11608. ircg_channel_mode()
  11609. ircg_disconnect()
  11610. ircg_fetch_error_msg()
  11611. ircg_get_username()
  11612. ircg_html_encode()
  11613. ircg_ignore_add()
  11614. ircg_ignore_del()
  11615. ircg_is_conn_alive()
  11616. ircg_join()
  11617. ircg_kick()
  11618. ircg_lookup_format_messages()
  11619. ircg_msg()
  11620. ircg_nick()
  11621. ircg_nickname_escape()
  11622. ircg_nickname_unescape()
  11623. ircg_notice()
  11624. ircg_part()
  11625. ircg_pconnect()
  11626. ircg_register_format_messages()
  11627. ircg_set_current()
  11628. ircg_set_file()
  11629. ircg_set_on_die()
  11630. ircg_topic()
  11631. ircg_whois()
  11632. java_last_exception_clear()
  11633. java_last_exception_get()
  11634. ldap_8859_to_t61()
  11635. ldap_add()
  11636. ldap_bind()
  11637. ldap_close()
  11638. ldap_compare()
  11639. ldap_connect()
  11640. ldap_count_entries()
  11641. ldap_delete()
  11642. ldap_dn2ufn()
  11643. ldap_err2str()
  11644. ldap_errno()
  11645. ldap_error()
  11646. ldap_explode_dn()
  11647. ldap_first_attribute()
  11648. ldap_first_entry()
  11649. ldap_first_reference()
  11650. ldap_free_result()
  11651. ldap_get_attributes()
  11652. ldap_get_dn()
  11653. ldap_get_entries()
  11654. ldap_get_option()
  11655. ldap_get_values_len()
  11656. ldap_get_values()
  11657. ldap_list()
  11658. ldap_mod_add()
  11659. ldap_mod_del()
  11660. ldap_mod_replace()
  11661. ldap_modify()
  11662. ldap_next_attribute()
  11663. ldap_next_entry()
  11664. ldap_next_reference()
  11665. ldap_parse_reference()
  11666. ldap_parse_result()
  11667. ldap_read()
  11668. ldap_rename()
  11669. ldap_search()
  11670. ldap_set_option()
  11671. ldap_set_rebind_proc()
  11672. ldap_sort()
  11673. ldap_start_tls()
  11674. ldap_t61_to_8859()
  11675. ldap_unbind()
  11676. ezmlm_hash()
  11677. mail()
  11678. mailparse_determine_best_xfer_encoding()
  11679. mailparse_msg_create()
  11680. mailparse_msg_extract_part_file()
  11681. mailparse_msg_extract_part()
  11682. mailparse_msg_free()
  11683. mailparse_msg_get_part_data()
  11684. mailparse_msg_get_part()
  11685. mailparse_msg_get_structure()
  11686. mailparse_msg_parse_file()
  11687. mailparse_msg_parse()
  11688. mailparse_rfc822_parse_addresses()
  11689. mailparse_stream_encode()
  11690. mailparse_uudecode_all()
  11691. abs()
  11692. acos()
  11693. acosh()
  11694. asin()
  11695. asinh()
  11696. atan2()
  11697. atan()
  11698. atanh()
  11699. base_convert()
  11700. bindec()
  11701. ceil()
  11702. cos()
  11703. cosh()
  11704. decbin()
  11705. dechex()
  11706. decoct()
  11707. deg2rad()
  11708. exp()
  11709. expm1()
  11710. floor()
  11711. fmod()
  11712. getrandmax()
  11713. hexdec()
  11714. hypot()
  11715. is_finite()
  11716. is_infinite()
  11717. is_nan()
  11718. lcg_value()
  11719. log10()
  11720. log1p()
  11721. log()
  11722. max()
  11723. min()
  11724. mt_getrandmax()
  11725. mt_rand()
  11726. mt_srand()
  11727. octdec()
  11728. pi()
  11729. pow()
  11730. rad2deg()
  11731. rand()
  11732. round()
  11733. sin()
  11734. sinh()
  11735. sqrt()
  11736. srand()
  11737. tan()
  11738. tanh()
  11739. mb_convert_case()
  11740. mb_convert_encoding()
  11741. mb_convert_kana()
  11742. mb_convert_variables()
  11743. mb_decode_mimeheader()
  11744. mb_decode_numericentity()
  11745. mb_detect_encoding()
  11746. mb_detect_order()
  11747. mb_encode_mimeheader()
  11748. mb_encode_numericentity()
  11749. mb_ereg_match()
  11750. mb_ereg_replace()
  11751. mb_ereg_search_getpos()
  11752. mb_ereg_search_getregs()
  11753. mb_ereg_search_init()
  11754. mb_ereg_search_pos()
  11755. mb_ereg_search_regs()
  11756. mb_ereg_search_setpos()
  11757. mb_ereg_search()
  11758. mb_ereg()
  11759. mb_eregi_replace()
  11760. mb_eregi()
  11761. mb_get_info()
  11762. mb_http_input()
  11763. mb_http_output()
  11764. mb_internal_encoding()
  11765. mb_language()
  11766. mb_output_handler()
  11767. mb_parse_str()
  11768. mb_preferred_mime_name()
  11769. mb_regex_encoding()
  11770. mb_regex_set_options()
  11771. mb_send_mail()
  11772. mb_split()
  11773. mb_strcut()
  11774. mb_strimwidth()
  11775. mb_strlen()
  11776. mb_strpos()
  11777. mb_strrpos()
  11778. mb_strtolower()
  11779. mb_strtoupper()
  11780. mb_strwidth()
  11781. mb_substitute_character()
  11782. mb_substr_count()
  11783. mb_substr()
  11784. mcal_append_event()
  11785. mcal_close()
  11786. mcal_create_calendar()
  11787. mcal_date_compare()
  11788. mcal_date_valid()
  11789. mcal_day_of_week()
  11790. mcal_day_of_year()
  11791. mcal_days_in_month()
  11792. mcal_delete_calendar()
  11793. mcal_delete_event()
  11794. mcal_event_add_attribute()
  11795. mcal_event_init()
  11796. mcal_event_set_alarm()
  11797. mcal_event_set_category()
  11798. mcal_event_set_class()
  11799. mcal_event_set_description()
  11800. mcal_event_set_end()
  11801. mcal_event_set_recur_daily()
  11802. mcal_event_set_recur_monthly_mday()
  11803. mcal_event_set_recur_monthly_wday()
  11804. mcal_event_set_recur_none()
  11805. mcal_event_set_recur_weekly()
  11806. mcal_event_set_recur_yearly()
  11807. mcal_event_set_start()
  11808. mcal_event_set_title()
  11809. mcal_expunge()
  11810. mcal_fetch_current_stream_event()
  11811. mcal_fetch_event()
  11812. mcal_is_leap_year()
  11813. mcal_list_alarms()
  11814. mcal_list_events()
  11815. mcal_next_recurrence()
  11816. mcal_open()
  11817. mcal_popen()
  11818. mcal_rename_calendar()
  11819. mcal_reopen()
  11820. mcal_snooze()
  11821. mcal_store_event()
  11822. mcal_time_valid()
  11823. mcal_week_of_year()
  11824. mcrypt_cbc()
  11825. mcrypt_cfb()
  11826. mcrypt_create_iv()
  11827. mcrypt_decrypt()
  11828. mcrypt_ecb()
  11829. mcrypt_enc_get_algorithms_name()
  11830. mcrypt_enc_get_block_size()
  11831. mcrypt_enc_get_iv_size()
  11832. mcrypt_enc_get_key_size()
  11833. mcrypt_enc_get_modes_name()
  11834. mcrypt_enc_get_supported_key_sizes()
  11835. mcrypt_enc_is_block_algorithm_mode()
  11836. mcrypt_enc_is_block_algorithm()
  11837. mcrypt_enc_is_block_mode()
  11838. mcrypt_enc_self_test()
  11839. mcrypt_encrypt()
  11840. mcrypt_generic_deinit()
  11841. mcrypt_generic_end()
  11842. mcrypt_generic_init()
  11843. mcrypt_generic()
  11844. mcrypt_get_block_size()
  11845. mcrypt_get_cipher_name()
  11846. mcrypt_get_iv_size()
  11847. mcrypt_get_key_size()
  11848. mcrypt_list_algorithms()
  11849. mcrypt_list_modes()
  11850. mcrypt_module_close()
  11851. mcrypt_module_get_algo_block_size()
  11852. mcrypt_module_get_algo_key_size()
  11853. mcrypt_module_get_supported_key_sizes()
  11854. mcrypt_module_is_block_algorithm_mode()
  11855. mcrypt_module_is_block_algorithm()
  11856. mcrypt_module_is_block_mode()
  11857. mcrypt_module_open()
  11858. mcrypt_module_self_test()
  11859. mcrypt_ofb()
  11860. mdecrypt_generic()
  11861. mcve_adduser()
  11862. mcve_adduserarg()
  11863. mcve_bt()
  11864. mcve_checkstatus()
  11865. mcve_chkpwd()
  11866. mcve_chngpwd()
  11867. mcve_completeauthorizations()
  11868. mcve_connect()
  11869. mcve_connectionerror()
  11870. mcve_deleteresponse()
  11871. mcve_deletetrans()
  11872. mcve_deleteusersetup()
  11873. mcve_deluser()
  11874. mcve_destroyconn()
  11875. mcve_destroyengine()
  11876. mcve_disableuser()
  11877. mcve_edituser()
  11878. mcve_enableuser()
  11879. mcve_force()
  11880. mcve_getcell()
  11881. mcve_getcellbynum()
  11882. mcve_getcommadelimited()
  11883. mcve_getheader()
  11884. mcve_getuserarg()
  11885. mcve_getuserparam()
  11886. mcve_gft()
  11887. mcve_gl()
  11888. mcve_gut()
  11889. mcve_initconn()
  11890. mcve_initengine()
  11891. mcve_initusersetup()
  11892. mcve_iscommadelimited()
  11893. mcve_liststats()
  11894. mcve_listusers()
  11895. mcve_maxconntimeout()
  11896. mcve_monitor()
  11897. mcve_numcolumns()
  11898. mcve_numrows()
  11899. mcve_override()
  11900. mcve_parsecommadelimited()
  11901. mcve_ping()
  11902. mcve_preauth()
  11903. mcve_preauthcompletion()
  11904. mcve_qc()
  11905. mcve_responseparam()
  11906. mcve_return()
  11907. mcve_returncode()
  11908. mcve_returnstatus()
  11909. mcve_sale()
  11910. mcve_setblocking()
  11911. mcve_setdropfile()
  11912. mcve_setip()
  11913. mcve_setssl_files()
  11914. mcve_setssl()
  11915. mcve_settimeout()
  11916. mcve_settle()
  11917. mcve_text_avs()
  11918. mcve_text_code()
  11919. mcve_text_cv()
  11920. mcve_transactionauth()
  11921. mcve_transactionavs()
  11922. mcve_transactionbatch()
  11923. mcve_transactioncv()
  11924. mcve_transactionid()
  11925. mcve_transactionitem()
  11926. mcve_transactionssent()
  11927. mcve_transactiontext()
  11928. mcve_transinqueue()
  11929. mcve_transnew()
  11930. mcve_transparam()
  11931. mcve_transsend()
  11932. mcve_ub()
  11933. mcve_uwait()
  11934. mcve_verifyconnection()
  11935. mcve_verifysslcert()
  11936. mcve_void()
  11937. mhash_count()
  11938. mhash_get_block_size()
  11939. mhash_get_hash_name()
  11940. mhash_keygen_s2k()
  11941. mhash()
  11942. mime_content_type()
  11943. mssql_bind()
  11944. mssql_close()
  11945. mssql_connect()
  11946. mssql_data_seek()
  11947. mssql_execute()
  11948. mssql_fetch_array()
  11949. mssql_fetch_assoc()
  11950. mssql_fetch_batch()
  11951. mssql_fetch_field()
  11952. mssql_fetch_object()
  11953. mssql_fetch_row()
  11954. mssql_field_length()
  11955. mssql_field_name()
  11956. mssql_field_seek()
  11957. mssql_field_type()
  11958. mssql_free_result()
  11959. mssql_free_statement()
  11960. mssql_get_last_message()
  11961. mssql_guid_string()
  11962. mssql_init()
  11963. mssql_min_error_severity()
  11964. mssql_min_message_severity()
  11965. mssql_next_result()
  11966. mssql_num_fields()
  11967. mssql_num_rows()
  11968. mssql_pconnect()
  11969. mssql_query()
  11970. mssql_result()
  11971. mssql_rows_affected()
  11972. mssql_select_db()
  11973. ming_setcubicthreshold()
  11974. ming_setscale()
  11975. ming_useswfversion()
  11976. SWFAction()
  11977. SWFBitmap->getHeight()
  11978. SWFBitmap->getWidth()
  11979. SWFBitmap()
  11980. swfbutton_keypress()
  11981. SWFbutton->addAction()
  11982. SWFbutton->addShape()
  11983. SWFbutton->setAction()
  11984. SWFbutton->setdown()
  11985. SWFbutton->setHit()
  11986. SWFbutton->setOver()
  11987. SWFbutton->setUp()
  11988. SWFbutton()
  11989. SWFDisplayItem->addColor()
  11990. SWFDisplayItem->move()
  11991. SWFDisplayItem->moveTo()
  11992. SWFDisplayItem->multColor()
  11993. SWFDisplayItem->remove()
  11994. SWFDisplayItem->Rotate()
  11995. SWFDisplayItem->rotateTo()
  11996. SWFDisplayItem->scale()
  11997. SWFDisplayItem->scaleTo()
  11998. SWFDisplayItem->setDepth()
  11999. SWFDisplayItem->setName()
  12000. SWFDisplayItem->setRatio()
  12001. SWFDisplayItem->skewX()
  12002. SWFDisplayItem->skewXTo()
  12003. SWFDisplayItem->skewY()
  12004. SWFDisplayItem->skewYTo()
  12005. SWFDisplayItem()
  12006. SWFFill->moveTo()
  12007. SWFFill->rotateTo()
  12008. SWFFill->scaleTo()
  12009. SWFFill->skewXTo()
  12010. SWFFill->skewYTo()
  12011. SWFFill()
  12012. swffont->getwidth()
  12013. SWFFont()
  12014. SWFGradient->addEntry()
  12015. SWFGradient()
  12016. SWFMorph->getshape1()
  12017. SWFMorph->getshape2()
  12018. SWFMorph()
  12019. SWFMovie->add()
  12020. SWFMovie->nextframe()
  12021. SWFMovie->output()
  12022. swfmovie->remove()
  12023. SWFMovie->save()
  12024. SWFMovie->setbackground()
  12025. SWFMovie->setdimension()
  12026. SWFMovie->setframes()
  12027. SWFMovie->setrate()
  12028. SWFMovie->streammp3()
  12029. SWFMovie()
  12030. SWFShape->addFill()
  12031. SWFShape->drawCurve()
  12032. SWFShape->drawCurveTo()
  12033. SWFShape->drawLine()
  12034. SWFShape->drawLineTo()
  12035. SWFShape->movePen()
  12036. SWFShape->movePenTo()
  12037. SWFShape->setLeftFill()
  12038. SWFShape->setLine()
  12039. SWFShape->setRightFill()
  12040. SWFShape()
  12041. swfsprite->add()
  12042. SWFSprite->nextframe()
  12043. SWFSprite->remove()
  12044. SWFSprite->setframes()
  12045. SWFSprite()
  12046. SWFText->addString()
  12047. SWFText->getWidth()
  12048. SWFText->moveTo()
  12049. SWFText->setColor()
  12050. SWFText->setFont()
  12051. SWFText->setHeight()
  12052. SWFText->setSpacing()
  12053. SWFText()
  12054. SWFTextField->addstring()
  12055. SWFTextField->align()
  12056. SWFTextField->setbounds()
  12057. SWFTextField->setcolor()
  12058. SWFTextField->setFont()
  12059. SWFTextField->setHeight()
  12060. SWFTextField->setindentation()
  12061. SWFTextField->setLeftMargin()
  12062. SWFTextField->setLineSpacing()
  12063. SWFTextField->setMargins()
  12064. SWFTextField->setname()
  12065. SWFTextField->setrightMargin()
  12066. SWFTextField()
  12067. connection_aborted()
  12068. connection_status()
  12069. connection_timeout()
  12070. constant()
  12071. define()
  12072. defined()
  12073. die()
  12074. eval()
  12075. exit()
  12076. get_browser()
  12077. highlight_file()
  12078. highlight_string()
  12079. ignore_user_abort()
  12080. pack()
  12081. show_source()
  12082. sleep()
  12083. uniqid()
  12084. unpack()
  12085. usleep()
  12086. udm_add_search_limit()
  12087. udm_alloc_agent()
  12088. udm_api_version()
  12089. udm_cat_list()
  12090. udm_cat_path()
  12091. udm_check_charset()
  12092. udm_check_stored()
  12093. udm_clear_search_limits()
  12094. udm_close_stored()
  12095. udm_crc32()
  12096. udm_errno()
  12097. udm_error()
  12098. udm_find()
  12099. udm_free_agent()
  12100. udm_free_ispell_data()
  12101. udm_free_res()
  12102. udm_get_doc_count()
  12103. udm_get_res_field()
  12104. udm_get_res_param()
  12105. udm_load_ispell_data()
  12106. udm_open_stored()
  12107. udm_set_agent_param()
  12108. msql_affected_rows()
  12109. msql_close()
  12110. msql_connect()
  12111. msql_create_db()
  12112. msql_createdb()
  12113. msql_data_seek()
  12114. msql_dbname()
  12115. msql_drop_db()
  12116. msql_dropdb()
  12117. msql_error()
  12118. msql_fetch_array()
  12119. msql_fetch_field()
  12120. msql_fetch_object()
  12121. msql_fetch_row()
  12122. msql_field_seek()
  12123. msql_fieldflags()
  12124. msql_fieldlen()
  12125. msql_fieldname()
  12126. msql_fieldtable()
  12127. msql_fieldtype()
  12128. msql_free_result()
  12129. msql_freeresult()
  12130. msql_list_dbs()
  12131. msql_list_fields()
  12132. msql_list_tables()
  12133. msql_listdbs()
  12134. msql_listfields()
  12135. msql_listtables()
  12136. msql_num_fields()
  12137. msql_num_rows()
  12138. msql_numfields()
  12139. msql_numrows()
  12140. msql_pconnect()
  12141. msql_query()
  12142. msql_regcase()
  12143. msql_result()
  12144. msql_select_db()
  12145. msql_selectdb()
  12146. msql_tablename()
  12147. msql()
  12148. mysql_affected_rows()
  12149. mysql_change_user()
  12150. mysql_client_encoding()
  12151. mysql_close()
  12152. mysql_connect()
  12153. mysql_create_db()
  12154. mysql_data_seek()
  12155. mysql_db_name()
  12156. mysql_db_query()
  12157. mysql_drop_db()
  12158. mysql_errno()
  12159. mysql_error()
  12160. mysql_escape_string()
  12161. mysql_fetch_array()
  12162. mysql_fetch_assoc()
  12163. mysql_fetch_field()
  12164. mysql_fetch_lengths()
  12165. mysql_fetch_object()
  12166. mysql_fetch_row()
  12167. mysql_field_flags()
  12168. mysql_field_len()
  12169. mysql_field_name()
  12170. mysql_field_seek()
  12171. mysql_field_table()
  12172. mysql_field_type()
  12173. mysql_free_result()
  12174. mysql_get_client_info()
  12175. mysql_get_host_info()
  12176. mysql_get_proto_info()
  12177. mysql_get_server_info()
  12178. mysql_info()
  12179. mysql_insert_id()
  12180. mysql_list_dbs()
  12181. mysql_list_fields()
  12182. mysql_list_processes()
  12183. mysql_list_tables()
  12184. mysql_num_fields()
  12185. mysql_num_rows()
  12186. mysql_pconnect()
  12187. mysql_ping()
  12188. mysql_query()
  12189. mysql_real_escape_string()
  12190. mysql_result()
  12191. mysql_select_db()
  12192. mysql_stat()
  12193. mysql_tablename()
  12194. mysql_thread_id()
  12195. mysql_unbuffered_query()
  12196. mysqli_affected_rows()
  12197. mysqli_autocommit()
  12198. mysqli_bind_param()
  12199. mysqli_bind_result()
  12200. mysqli_change_user()
  12201. mysqli_character_set_name()
  12202. mysqli_close()
  12203. mysqli_commit()
  12204. mysqli_connect()
  12205. mysqli_data_seek()
  12206. mysqli_debug()
  12207. mysqli_disable_reads_from_master()
  12208. mysqli_disable_rpl_parse()
  12209. mysqli_dump_debug_info()
  12210. mysqli_enable_reads_from_master()
  12211. mysqli_enable_rpl_parse()
  12212. mysqli_errno()
  12213. mysqli_error()
  12214. mysqli_execute()
  12215. mysqli_fetch_array()
  12216. mysqli_fetch_assoc()
  12217. mysqli_fetch_field_direct()
  12218. mysqli_fetch_field()
  12219. mysqli_fetch_fields()
  12220. mysqli_fetch_lengths()
  12221. mysqli_fetch_object()
  12222. mysqli_fetch_row()
  12223. mysqli_fetch()
  12224. mysqli_field_count()
  12225. mysqli_field_seek()
  12226. mysqli_field_tell()
  12227. mysqli_free_result()
  12228. mysqli_get_client_info()
  12229. mysqli_get_host_info()
  12230. mysqli_get_proto_info()
  12231. mysqli_get_server_info()
  12232. mysqli_get_server_version()
  12233. mysqli_info()
  12234. mysqli_init()
  12235. mysqli_insert_id()
  12236. mysqli_kill()
  12237. mysqli_master_query()
  12238. mysqli_num_fields()
  12239. mysqli_num_rows()
  12240. mysqli_options()
  12241. mysqli_param_count()
  12242. mysqli_ping()
  12243. mysqli_prepare_result()
  12244. mysqli_prepare()
  12245. mysqli_profiler()
  12246. mysqli_query()
  12247. mysqli_read_query_result()
  12248. mysqli_real_connect()
  12249. mysqli_real_escape_string()
  12250. mysqli_real_query()
  12251. mysqli_reload()
  12252. mysqli_rollback()
  12253. mysqli_rpl_parse_enabled()
  12254. mysqli_rpl_probe()
  12255. mysqli_rpl_query_type()
  12256. mysqli_select_db()
  12257. mysqli_send_long_data()
  12258. mysqli_send_query()
  12259. mysqli_slave_query()
  12260. mysqli_ssl_set()
  12261. mysqli_stat()
  12262. mysqli_stmt_affected_rows()
  12263. mysqli_stmt_close()
  12264. mysqli_stmt_errno()
  12265. mysqli_stmt_error()
  12266. mysqli_stmt_store_result()
  12267. mysqli_store_result()
  12268. mysqli_thread_id()
  12269. mysqli_thread_safe()
  12270. mysqli_use_result()
  12271. mysqli_warning_count()
  12272. msession_connect()
  12273. msession_count()
  12274. msession_create()
  12275. msession_destroy()
  12276. msession_disconnect()
  12277. msession_find()
  12278. msession_get_array()
  12279. msession_get()
  12280. msession_getdata()
  12281. msession_inc()
  12282. msession_list()
  12283. msession_listvar()
  12284. msession_lock()
  12285. msession_plugin()
  12286. msession_randstr()
  12287. msession_set_array()
  12288. msession_set()
  12289. msession_setdata()
  12290. msession_timeout()
  12291. msession_uniq()
  12292. msession_unlock()
  12293. muscat_close()
  12294. muscat_get()
  12295. muscat_give()
  12296. muscat_setup_net()
  12297. muscat_setup()
  12298. checkdnsrr()
  12299. closelog()
  12300. debugger_off()
  12301. debugger_on()
  12302. define_syslog_variables()
  12303. dns_check_record()
  12304. dns_get_mx()
  12305. dns_get_record()
  12306. fsockopen()
  12307. gethostbyaddr()
  12308. gethostbyname()
  12309. gethostbynamel()
  12310. getmxrr()
  12311. getprotobyname()
  12312. getprotobynumber()
  12313. getservbyname()
  12314. getservbyport()
  12315. ip2long()
  12316. long2ip()
  12317. openlog()
  12318. pfsockopen()
  12319. socket_get_status()
  12320. socket_set_blocking()
  12321. socket_set_timeout()
  12322. syslog()
  12323. ncurses_addch()
  12324. ncurses_addchnstr()
  12325. ncurses_addchstr()
  12326. ncurses_addnstr()
  12327. ncurses_addstr()
  12328. ncurses_assume_default_colors()
  12329. ncurses_attroff()
  12330. ncurses_attron()
  12331. ncurses_attrset()
  12332. ncurses_baudrate()
  12333. ncurses_beep()
  12334. ncurses_bkgd()
  12335. ncurses_bkgdset()
  12336. ncurses_border()
  12337. ncurses_bottom_panel()
  12338. ncurses_can_change_color()
  12339. ncurses_cbreak()
  12340. ncurses_clear()
  12341. ncurses_clrtobot()
  12342. ncurses_clrtoeol()
  12343. ncurses_color_content()
  12344. ncurses_color_set()
  12345. ncurses_curs_set()
  12346. ncurses_def_prog_mode()
  12347. ncurses_def_shell_mode()
  12348. ncurses_define_key()
  12349. ncurses_del_panel()
  12350. ncurses_delay_output()
  12351. ncurses_delch()
  12352. ncurses_deleteln()
  12353. ncurses_delwin()
  12354. ncurses_doupdate()
  12355. ncurses_echo()
  12356. ncurses_echochar()
  12357. ncurses_end()
  12358. ncurses_erase()
  12359. ncurses_erasechar()
  12360. ncurses_filter()
  12361. ncurses_flash()
  12362. ncurses_flushinp()
  12363. ncurses_getch()
  12364. ncurses_getmaxyx()
  12365. ncurses_getmouse()
  12366. ncurses_getyx()
  12367. ncurses_halfdelay()
  12368. ncurses_has_colors()
  12369. ncurses_has_ic()
  12370. ncurses_has_il()
  12371. ncurses_has_key()
  12372. ncurses_hide_panel()
  12373. ncurses_hline()
  12374. ncurses_inch()
  12375. ncurses_init_color()
  12376. ncurses_init_pair()
  12377. ncurses_init()
  12378. ncurses_insch()
  12379. ncurses_insdelln()
  12380. ncurses_insertln()
  12381. ncurses_insstr()
  12382. ncurses_instr()
  12383. ncurses_isendwin()
  12384. ncurses_keyok()
  12385. ncurses_keypad()
  12386. ncurses_killchar()
  12387. ncurses_longname()
  12388. ncurses_meta()
  12389. ncurses_mouse_trafo()
  12390. ncurses_mouseinterval()
  12391. ncurses_mousemask()
  12392. ncurses_move_panel()
  12393. ncurses_move()
  12394. ncurses_mvaddch()
  12395. ncurses_mvaddchnstr()
  12396. ncurses_mvaddchstr()
  12397. ncurses_mvaddnstr()
  12398. ncurses_mvaddstr()
  12399. ncurses_mvcur()
  12400. ncurses_mvdelch()
  12401. ncurses_mvgetch()
  12402. ncurses_mvhline()
  12403. ncurses_mvinch()
  12404. ncurses_mvvline()
  12405. ncurses_mvwaddstr()
  12406. ncurses_napms()
  12407. ncurses_new_panel()
  12408. ncurses_newpad()
  12409. ncurses_newwin()
  12410. ncurses_nl()
  12411. ncurses_nocbreak()
  12412. ncurses_noecho()
  12413. ncurses_nonl()
  12414. ncurses_noqiflush()
  12415. ncurses_noraw()
  12416. ncurses_pair_content()
  12417. ncurses_panel_above()
  12418. ncurses_panel_below()
  12419. ncurses_panel_window()
  12420. ncurses_pnoutrefresh()
  12421. ncurses_prefresh()
  12422. ncurses_putp()
  12423. ncurses_qiflush()
  12424. ncurses_raw()
  12425. ncurses_refresh()
  12426. ncurses_replace_panel()
  12427. ncurses_reset_prog_mode()
  12428. ncurses_reset_shell_mode()
  12429. ncurses_resetty()
  12430. ncurses_savetty()
  12431. ncurses_scr_dump()
  12432. ncurses_scr_init()
  12433. ncurses_scr_restore()
  12434. ncurses_scr_set()
  12435. ncurses_scrl()
  12436. ncurses_show_panel()
  12437. ncurses_slk_attr()
  12438. ncurses_slk_attroff()
  12439. ncurses_slk_attron()
  12440. ncurses_slk_attrset()
  12441. ncurses_slk_clear()
  12442. ncurses_slk_color()
  12443. ncurses_slk_init()
  12444. ncurses_slk_noutrefresh()
  12445. ncurses_slk_refresh()
  12446. ncurses_slk_restore()
  12447. ncurses_slk_set()
  12448. ncurses_slk_touch()
  12449. ncurses_standend()
  12450. ncurses_standout()
  12451. ncurses_start_color()
  12452. ncurses_termattrs()
  12453. ncurses_termname()
  12454. ncurses_timeout()
  12455. ncurses_top_panel()
  12456. ncurses_typeahead()
  12457. ncurses_ungetch()
  12458. ncurses_ungetmouse()
  12459. ncurses_update_panels()
  12460. ncurses_use_default_colors()
  12461. ncurses_use_env()
  12462. ncurses_use_extended_names()
  12463. ncurses_vidattr()
  12464. ncurses_vline()
  12465. ncurses_waddch()
  12466. ncurses_waddstr()
  12467. ncurses_wattroff()
  12468. ncurses_wattron()
  12469. ncurses_wattrset()
  12470. ncurses_wborder()
  12471. ncurses_wclear()
  12472. ncurses_wcolor_set()
  12473. ncurses_werase()
  12474. ncurses_wgetch()
  12475. ncurses_whline()
  12476. ncurses_wmouse_trafo()
  12477. ncurses_wmove()
  12478. ncurses_wnoutrefresh()
  12479. ncurses_wrefresh()
  12480. ncurses_wstandend()
  12481. ncurses_wstandout()
  12482. ncurses_wvline()
  12483. notes_body()
  12484. notes_copy_db()
  12485. notes_create_db()
  12486. notes_create_note()
  12487. notes_drop_db()
  12488. notes_find_note()
  12489. notes_header_info()
  12490. notes_list_msgs()
  12491. notes_mark_read()
  12492. notes_mark_unread()
  12493. notes_nav_create()
  12494. notes_search()
  12495. notes_unread()
  12496. notes_version()
  12497. nsapi_request_headers()
  12498. nsapi_response_headers()
  12499. nsapi_virtual()
  12500. odbc_autocommit()
  12501. odbc_binmode()
  12502. odbc_close_all()
  12503. odbc_close()
  12504. odbc_columnprivileges()
  12505. odbc_columns()
  12506. odbc_commit()
  12507. odbc_connect()
  12508. odbc_cursor()
  12509. odbc_data_source()
  12510. odbc_do()
  12511. odbc_error()
  12512. odbc_errormsg()
  12513. odbc_exec()
  12514. odbc_execute()
  12515. odbc_fetch_array()
  12516. odbc_fetch_into()
  12517. odbc_fetch_object()
  12518. odbc_fetch_row()
  12519. odbc_field_len()
  12520. odbc_field_name()
  12521. odbc_field_num()
  12522. odbc_field_precision()
  12523. odbc_field_scale()
  12524. odbc_field_type()
  12525. odbc_foreignkeys()
  12526. odbc_free_result()
  12527. odbc_gettypeinfo()
  12528. odbc_longreadlen()
  12529. odbc_next_result()
  12530. odbc_num_fields()
  12531. odbc_num_rows()
  12532. odbc_pconnect()
  12533. odbc_prepare()
  12534. odbc_primarykeys()
  12535. odbc_procedurecolumns()
  12536. odbc_procedures()
  12537. odbc_result_all()
  12538. odbc_result()
  12539. odbc_rollback()
  12540. odbc_setoption()
  12541. odbc_specialcolumns()
  12542. odbc_statistics()
  12543. odbc_tableprivileges()
  12544. odbc_tables()
  12545. aggregate_info()
  12546. aggregate_methods_by_list()
  12547. aggregate_methods_by_regexp()
  12548. aggregate_methods()
  12549. aggregate_properties_by_list()
  12550. aggregate_properties_by_regexp()
  12551. aggregate_properties()
  12552. aggregate()
  12553. aggregation_info()
  12554. deaggregate()
  12555. ocibindbyname()
  12556. ocicancel()
  12557. ocicloselob()
  12558. ocicollappend()
  12559. ocicollassign()
  12560. ocicollassignelem()
  12561. ocicollgetelem()
  12562. ocicollmax()
  12563. ocicollsize()
  12564. ocicolltrim()
  12565. ocicolumnisnull()
  12566. ocicolumnname()
  12567. ocicolumnprecision()
  12568. ocicolumnscale()
  12569. ocicolumnsize()
  12570. ocicolumntype()
  12571. ocicolumntyperaw()
  12572. ocicommit()
  12573. ocidefinebyname()
  12574. ocierror()
  12575. ociexecute()
  12576. ocifetch()
  12577. ocifetchinto()
  12578. ocifetchstatement()
  12579. ocifreecollection()
  12580. ocifreecursor()
  12581. ocifreedesc()
  12582. ocifreestatement()
  12583. ociinternaldebug()
  12584. ociloadlob()
  12585. ocilogoff()
  12586. ocilogon()
  12587. ocinewcollection()
  12588. ocinewcursor()
  12589. ocinewdescriptor()
  12590. ocinlogon()
  12591. ocinumcols()
  12592. ociparse()
  12593. ociplogon()
  12594. ociresult()
  12595. ocirollback()
  12596. ocirowcount()
  12597. ocisavelob()
  12598. ocisavelobfile()
  12599. ociserverversion()
  12600. ocisetprefetch()
  12601. ocistatementtype()
  12602. ociwritelobtofile()
  12603. ociwritetemporarylob()
  12604. openssl_csr_export_to_file()
  12605. openssl_csr_export()
  12606. openssl_csr_new()
  12607. openssl_csr_sign()
  12608. openssl_error_string()
  12609. openssl_free_key()
  12610. openssl_get_privatekey()
  12611. openssl_get_publickey()
  12612. openssl_open()
  12613. openssl_pkcs7_decrypt()
  12614. openssl_pkcs7_encrypt()
  12615. openssl_pkcs7_sign()
  12616. openssl_pkcs7_verify()
  12617. openssl_pkey_export_to_file()
  12618. openssl_pkey_export()
  12619. openssl_pkey_get_private()
  12620. openssl_pkey_get_public()
  12621. openssl_pkey_new()
  12622. openssl_private_decrypt()
  12623. openssl_private_encrypt()
  12624. openssl_public_decrypt()
  12625. openssl_public_encrypt()
  12626. openssl_seal()
  12627. openssl_sign()
  12628. openssl_verify()
  12629. openssl_x509_check_private_key()
  12630. openssl_x509_checkpurpose()
  12631. openssl_x509_export_to_file()
  12632. openssl_x509_export()
  12633. openssl_x509_free()
  12634. openssl_x509_parse()
  12635. openssl_x509_read()
  12636. ora_bind()
  12637. ora_close()
  12638. ora_columnname()
  12639. ora_columnsize()
  12640. ora_columntype()
  12641. ora_commit()
  12642. ora_commitoff()
  12643. ora_commiton()
  12644. ora_do()
  12645. ora_error()
  12646. ora_errorcode()
  12647. ora_exec()
  12648. ora_fetch_into()
  12649. ora_fetch()
  12650. ora_getcolumn()
  12651. ora_logoff()
  12652. ora_logon()
  12653. ora_numcols()
  12654. ora_numrows()
  12655. ora_open()
  12656. ora_parse()
  12657. ora_plogon()
  12658. ora_rollback()
  12659. ovrimos_close()
  12660. ovrimos_commit()
  12661. ovrimos_connect()
  12662. ovrimos_cursor()
  12663. ovrimos_exec()
  12664. ovrimos_execute()
  12665. ovrimos_fetch_into()
  12666. ovrimos_fetch_row()
  12667. ovrimos_field_len()
  12668. ovrimos_field_name()
  12669. ovrimos_field_num()
  12670. ovrimos_field_type()
  12671. ovrimos_free_result()
  12672. ovrimos_longreadlen()
  12673. ovrimos_num_fields()
  12674. ovrimos_num_rows()
  12675. ovrimos_prepare()
  12676. ovrimos_result_all()
  12677. ovrimos_result()
  12678. ovrimos_rollback()
  12679. flush()
  12680. ob_clean()
  12681. ob_end_clean()
  12682. ob_end_flush()
  12683. ob_flush()
  12684. ob_get_clean()
  12685. ob_get_contents()
  12686. ob_get_length()
  12687. ob_get_level()
  12688. ob_get_status()
  12689. ob_gzhandler()
  12690. ob_implicit_flush()
  12691. ob_start()
  12692. overload()
  12693. pdf_add_annotation()
  12694. pdf_add_bookmark()
  12695. pdf_add_launchlink()
  12696. pdf_add_locallink()
  12697. pdf_add_note()
  12698. pdf_add_outline()
  12699. pdf_add_pdflink()
  12700. pdf_add_thumbnail()
  12701. pdf_add_weblink()
  12702. pdf_arc()
  12703. pdf_arcn()
  12704. pdf_attach_file()
  12705. pdf_begin_page()
  12706. pdf_begin_pattern()
  12707. pdf_begin_template()
  12708. pdf_circle()
  12709. pdf_clip()
  12710. pdf_close_image()
  12711. pdf_close_pdi_page()
  12712. pdf_close_pdi()
  12713. pdf_close()
  12714. pdf_closepath_fill_stroke()
  12715. pdf_closepath_stroke()
  12716. pdf_closepath()
  12717. pdf_concat()
  12718. pdf_continue_text()
  12719. pdf_curveto()
  12720. pdf_delete()
  12721. pdf_end_page()
  12722. pdf_end_pattern()
  12723. pdf_end_template()
  12724. pdf_endpath()
  12725. pdf_fill_stroke()
  12726. pdf_fill()
  12727. pdf_findfont()
  12728. pdf_get_buffer()
  12729. pdf_get_font()
  12730. pdf_get_fontname()
  12731. pdf_get_fontsize()
  12732. pdf_get_image_height()
  12733. pdf_get_image_width()
  12734. pdf_get_majorversion()
  12735. pdf_get_minorversion()
  12736. pdf_get_parameter()
  12737. pdf_get_pdi_parameter()
  12738. pdf_get_pdi_value()
  12739. pdf_get_value()
  12740. pdf_initgraphics()
  12741. pdf_lineto()
  12742. pdf_makespotcolor()
  12743. pdf_moveto()
  12744. pdf_new()
  12745. pdf_open_CCITT()
  12746. pdf_open_file()
  12747. pdf_open_gif()
  12748. pdf_open_image_file()
  12749. pdf_open_image()
  12750. pdf_open_jpeg()
  12751. pdf_open_memory_image()
  12752. pdf_open_pdi_page()
  12753. pdf_open_pdi()
  12754. pdf_open_png()
  12755. pdf_open_tiff()
  12756. pdf_open()
  12757. pdf_place_image()
  12758. pdf_place_pdi_page()
  12759. pdf_rect()
  12760. pdf_restore()
  12761. pdf_rotate()
  12762. pdf_save()
  12763. pdf_scale()
  12764. pdf_set_border_color()
  12765. pdf_set_border_dash()
  12766. pdf_set_border_style()
  12767. pdf_set_char_spacing()
  12768. pdf_set_duration()
  12769. pdf_set_font()
  12770. pdf_set_horiz_scaling()
  12771. pdf_set_info_author()
  12772. pdf_set_info_creator()
  12773. pdf_set_info_keywords()
  12774. pdf_set_info_subject()
  12775. pdf_set_info_title()
  12776. pdf_set_info()
  12777. pdf_set_leading()
  12778. pdf_set_parameter()
  12779. pdf_set_text_matrix()
  12780. pdf_set_text_pos()
  12781. pdf_set_text_rendering()
  12782. pdf_set_text_rise()
  12783. pdf_set_value()
  12784. pdf_set_word_spacing()
  12785. pdf_setcolor()
  12786. pdf_setdash()
  12787. pdf_setflat()
  12788. pdf_setfont()
  12789. pdf_setgray_fill()
  12790. pdf_setgray_stroke()
  12791. pdf_setgray()
  12792. pdf_setlinecap()
  12793. pdf_setlinejoin()
  12794. pdf_setlinewidth()
  12795. pdf_setmatrix()
  12796. pdf_setmiterlimit()
  12797. pdf_setpolydash()
  12798. pdf_setrgbcolor_fill()
  12799. pdf_setrgbcolor_stroke()
  12800. pdf_setrgbcolor()
  12801. pdf_show_boxed()
  12802. pdf_show_xy()
  12803. pdf_show()
  12804. pdf_skew()
  12805. pdf_stringwidth()
  12806. pdf_stroke()
  12807. pdf_translate()
  12808. pfpro_cleanup()
  12809. pfpro_init()
  12810. pfpro_process_raw()
  12811. pfpro_process()
  12812. pfpro_version()
  12813. assert_options()
  12814. assert()
  12815. dl()
  12816. extension_loaded()
  12817. get_cfg_var()
  12818. get_current_user()
  12819. get_defined_constants()
  12820. get_extension_funcs()
  12821. get_include_path()
  12822. get_included_files()
  12823. get_loaded_extensions()
  12824. get_magic_quotes_gpc()
  12825. get_magic_quotes_runtime()
  12826. get_required_files()
  12827. getenv()
  12828. getlastmod()
  12829. getmygid()
  12830. getmyinode()
  12831. getmypid()
  12832. getmyuid()
  12833. getopt()
  12834. getrusage()
  12835. ini_alter()
  12836. ini_get_all()
  12837. ini_get()
  12838. ini_restore()
  12839. ini_set()
  12840. main()
  12841. memory_get_usage()
  12842. php_ini_scanned_files()
  12843. php_logo_guid()
  12844. php_sapi_name()
  12845. php_uname()
  12846. phpcredits()
  12847. phpinfo()
  12848. phpversion()
  12849. putenv()
  12850. restore_include_path()
  12851. set_include_path()
  12852. set_magic_quotes_runtime()
  12853. set_time_limit()
  12854. version_compare()
  12855. zend_logo_guid()
  12856. zend_version()
  12857. posix_ctermid()
  12858. posix_get_last_error()
  12859. posix_getcwd()
  12860. posix_getegid()
  12861. posix_geteuid()
  12862. posix_getgid()
  12863. posix_getgrgid()
  12864. posix_getgrnam()
  12865. posix_getgroups()
  12866. posix_getlogin()
  12867. posix_getpgid()
  12868. posix_getpgrp()
  12869. posix_getpid()
  12870. posix_getppid()
  12871. posix_getpwnam()
  12872. posix_getpwuid()
  12873. posix_getrlimit()
  12874. posix_getsid()
  12875. posix_getuid()
  12876. posix_isatty()
  12877. posix_kill()
  12878. posix_mkfifo()
  12879. posix_setegid()
  12880. posix_seteuid()
  12881. posix_setgid()
  12882. posix_setpgid()
  12883. posix_setsid()
  12884. posix_setuid()
  12885. posix_strerror()
  12886. posix_times()
  12887. posix_ttyname()
  12888. posix_uname()
  12889. pg_affected_rows()
  12890. pg_cancel_query()
  12891. pg_client_encoding()
  12892. pg_close()
  12893. pg_connect()
  12894. pg_connection_busy()
  12895. pg_connection_reset()
  12896. pg_connection_status()
  12897. pg_convert()
  12898. pg_copy_from()
  12899. pg_copy_to()
  12900. pg_dbname()
  12901. pg_delete()
  12902. pg_end_copy()
  12903. pg_escape_bytea()
  12904. pg_escape_string()
  12905. pg_fetch_all()
  12906. pg_fetch_array()
  12907. pg_fetch_assoc()
  12908. pg_fetch_object()
  12909. pg_fetch_result()
  12910. pg_fetch_row()
  12911. pg_field_is_null()
  12912. pg_field_name()
  12913. pg_field_num()
  12914. pg_field_prtlen()
  12915. pg_field_size()
  12916. pg_field_type()
  12917. pg_free_result()
  12918. pg_get_notify()
  12919. pg_get_pid()
  12920. pg_get_result()
  12921. pg_host()
  12922. pg_insert()
  12923. pg_last_error()
  12924. pg_last_notice()
  12925. pg_last_oid()
  12926. pg_lo_close()
  12927. pg_lo_create()
  12928. pg_lo_export()
  12929. pg_lo_import()
  12930. pg_lo_open()
  12931. pg_lo_read_all()
  12932. pg_lo_read()
  12933. pg_lo_seek()
  12934. pg_lo_tell()
  12935. pg_lo_unlink()
  12936. pg_lo_write()
  12937. pg_meta_data()
  12938. pg_num_fields()
  12939. pg_num_rows()
  12940. pg_options()
  12941. pg_pconnect()
  12942. pg_ping()
  12943. pg_port()
  12944. pg_put_line()
  12945. pg_query()
  12946. pg_result_error()
  12947. pg_result_seek()
  12948. pg_result_status()
  12949. pg_select()
  12950. pg_send_query()
  12951. pg_set_client_encoding()
  12952. pg_trace()
  12953. pg_tty()
  12954. pg_unescape_bytea()
  12955. pg_untrace()
  12956. pg_update()
  12957. pcntl_exec()
  12958. pcntl_fork()
  12959. pcntl_signal()
  12960. pcntl_waitpid()
  12961. pcntl_wexitstatus()
  12962. pcntl_wifexited()
  12963. pcntl_wifsignaled()
  12964. pcntl_wifstopped()
  12965. pcntl_wstopsig()
  12966. pcntl_wtermsig()
  12967. escapeshellarg()
  12968. escapeshellcmd()
  12969. exec()
  12970. passthru()
  12971. proc_close()
  12972. proc_get_status()
  12973. proc_nice()
  12974. proc_open()
  12975. proc_terminate()
  12976. shell_exec()
  12977. system()
  12978. printer_abort()
  12979. printer_close()
  12980. printer_create_brush()
  12981. printer_create_dc()
  12982. printer_create_font()
  12983. printer_create_pen()
  12984. printer_delete_brush()
  12985. printer_delete_dc()
  12986. printer_delete_font()
  12987. printer_delete_pen()
  12988. printer_draw_bmp()
  12989. printer_draw_chord()
  12990. printer_draw_elipse()
  12991. printer_draw_line()
  12992. printer_draw_pie()
  12993. printer_draw_rectangle()
  12994. printer_draw_roundrect()
  12995. printer_draw_text()
  12996. printer_end_doc()
  12997. printer_end_page()
  12998. printer_get_option()
  12999. printer_list()
  13000. printer_logical_fontheight()
  13001. printer_open()
  13002. printer_select_brush()
  13003. printer_select_font()
  13004. printer_select_pen()
  13005. printer_set_option()
  13006. printer_start_doc()
  13007. printer_start_page()
  13008. printer_write()
  13009. pspell_add_to_personal()
  13010. pspell_add_to_session()
  13011. pspell_check()
  13012. pspell_clear_session()
  13013. pspell_config_create()
  13014. pspell_config_ignore()
  13015. pspell_config_mode()
  13016. pspell_config_personal()
  13017. pspell_config_repl()
  13018. pspell_config_runtogether()
  13019. pspell_config_save_repl()
  13020. pspell_new_config()
  13021. pspell_new_personal()
  13022. pspell_new()
  13023. pspell_save_wordlist()
  13024. pspell_store_replacement()
  13025. pspell_suggest()
  13026. readline_add_history()
  13027. readline_clear_history()
  13028. readline_completion_function()
  13029. readline_info()
  13030. readline_list_history()
  13031. readline_read_history()
  13032. readline_write_history()
  13033. readline()
  13034. recode_file()
  13035. recode_string()
  13036. recode()
  13037. Pattern Modifiers()
  13038. Pattern Syntax()
  13039. preg_grep()
  13040. preg_match_all()
  13041. preg_match()
  13042. preg_quote()
  13043. preg_replace_callback()
  13044. preg_replace()
  13045. preg_split()
  13046. qdom_error()
  13047. qdom_tree()
  13048. ereg_replace()
  13049. ereg()
  13050. eregi_replace()
  13051. eregi()
  13052. split()
  13053. spliti()
  13054. sql_regcase()
  13055. ftok()
  13056. msg_get_queue()
  13057. msg_receive()
  13058. msg_remove_queue()
  13059. msg_send()
  13060. msg_set_queue()
  13061. msg_stat_queue()
  13062. sem_acquire()
  13063. sem_get()
  13064. sem_release()
  13065. sem_remove()
  13066. shm_attach()
  13067. shm_detach()
  13068. shm_get_var()
  13069. shm_put_var()
  13070. shm_remove_var()
  13071. shm_remove()
  13072. sesam_affected_rows()
  13073. sesam_commit()
  13074. sesam_connect()
  13075. sesam_diagnostic()
  13076. sesam_disconnect()
  13077. sesam_errormsg()
  13078. sesam_execimm()
  13079. sesam_fetch_array()
  13080. sesam_fetch_result()
  13081. sesam_fetch_row()
  13082. sesam_field_array()
  13083. sesam_field_name()
  13084. sesam_free_result()
  13085. sesam_num_fields()
  13086. sesam_query()
  13087. sesam_rollback()
  13088. sesam_seek_row()
  13089. sesam_settransaction()
  13090. session_cache_expire()
  13091. session_cache_limiter()
  13092. session_decode()
  13093. session_destroy()
  13094. session_encode()
  13095. session_get_cookie_params()
  13096. session_id()
  13097. session_is_registered()
  13098. session_module_name()
  13099. session_name()
  13100. session_regenerate_id()
  13101. session_register()
  13102. session_save_path()
  13103. session_set_cookie_params()
  13104. session_set_save_handler()
  13105. session_start()
  13106. session_unregister()
  13107. session_unset()
  13108. session_write_close()
  13109. shmop_close()
  13110. shmop_delete()
  13111. shmop_open()
  13112. shmop_read()
  13113. shmop_size()
  13114. shmop_write()
  13115. sqlite_array_query()
  13116. sqlite_busy_timeout()
  13117. sqlite_changes()
  13118. sqlite_close()
  13119. sqlite_column()
  13120. sqlite_create_aggregate()
  13121. sqlite_create_function()
  13122. sqlite_current()
  13123. sqlite_error_string()
  13124. sqlite_escape_string()
  13125. sqlite_fetch_array()
  13126. sqlite_fetch_single()
  13127. sqlite_fetch_string()
  13128. sqlite_field_name()
  13129. sqlite_has_more()
  13130. sqlite_last_error()
  13131. sqlite_last_insert_rowid()
  13132. sqlite_libencoding()
  13133. sqlite_libversion()
  13134. sqlite_next()
  13135. sqlite_num_fields()
  13136. sqlite_num_rows()
  13137. sqlite_open()
  13138. sqlite_popen()
  13139. sqlite_query()
  13140. sqlite_rewind()
  13141. sqlite_seek()
  13142. sqlite_udf_decode_binary()
  13143. sqlite_udf_encode_binary()
  13144. sqlite_unbuffered_query()
  13145. swf_actiongeturl()
  13146. swf_actiongotoframe()
  13147. swf_actiongotolabel()
  13148. swf_actionnextframe()
  13149. swf_actionplay()
  13150. swf_actionprevframe()
  13151. swf_actionsettarget()
  13152. swf_actionstop()
  13153. swf_actiontogglequality()
  13154. swf_actionwaitforframe()
  13155. swf_addbuttonrecord()
  13156. swf_addcolor()
  13157. swf_closefile()
  13158. swf_definebitmap()
  13159. swf_definefont()
  13160. swf_defineline()
  13161. swf_definepoly()
  13162. swf_definerect()
  13163. swf_definetext()
  13164. swf_endbutton()
  13165. swf_enddoaction()
  13166. swf_endshape()
  13167. swf_endsymbol()
  13168. swf_fontsize()
  13169. swf_fontslant()
  13170. swf_fonttracking()
  13171. swf_getbitmapinfo()
  13172. swf_getfontinfo()
  13173. swf_getframe()
  13174. swf_labelframe()
  13175. swf_lookat()
  13176. swf_modifyobject()
  13177. swf_mulcolor()
  13178. swf_nextid()
  13179. swf_oncondition()
  13180. swf_openfile()
  13181. swf_ortho2()
  13182. swf_ortho()
  13183. swf_perspective()
  13184. swf_placeobject()
  13185. swf_polarview()
  13186. swf_popmatrix()
  13187. swf_posround()
  13188. swf_pushmatrix()
  13189. swf_removeobject()
  13190. swf_rotate()
  13191. swf_scale()
  13192. swf_setfont()
  13193. swf_setframe()
  13194. swf_shapearc()
  13195. swf_shapecurveto3()
  13196. swf_shapecurveto()
  13197. swf_shapefillbitmapclip()
  13198. swf_shapefillbitmaptile()
  13199. swf_shapefilloff()
  13200. swf_shapefillsolid()
  13201. swf_shapelinesolid()
  13202. swf_shapelineto()
  13203. swf_shapemoveto()
  13204. swf_showframe()
  13205. swf_startbutton()
  13206. swf_startdoaction()
  13207. swf_startshape()
  13208. swf_startsymbol()
  13209. swf_textwidth()
  13210. swf_translate()
  13211. swf_viewport()
  13212. snmp_get_quick_print()
  13213. snmp_set_quick_print()
  13214. snmpget()
  13215. snmprealwalk()
  13216. snmpset()
  13217. snmpwalk()
  13218. snmpwalkoid()
  13219. socket_accept()
  13220. socket_bind()
  13221. socket_clear_error()
  13222. socket_close()
  13223. socket_connect()
  13224. socket_create_listen()
  13225. socket_create_pair()
  13226. socket_create()
  13227. socket_get_option()
  13228. socket_getpeername()
  13229. socket_getsockname()
  13230. socket_iovec_add()
  13231. socket_iovec_alloc()
  13232. socket_iovec_delete()
  13233. socket_iovec_fetch()
  13234. socket_iovec_free()
  13235. socket_iovec_set()
  13236. socket_last_error()
  13237. socket_listen()
  13238. socket_read()
  13239. socket_readv()
  13240. socket_recv()
  13241. socket_recvfrom()
  13242. socket_recvmsg()
  13243. socket_select()
  13244. socket_send()
  13245. socket_sendmsg()
  13246. socket_sendto()
  13247. socket_set_block()
  13248. socket_set_nonblock()
  13249. socket_set_option()
  13250. socket_shutdown()
  13251. socket_strerror()
  13252. socket_write()
  13253. socket_writev()
  13254. stream_context_create()
  13255. stream_context_get_options()
  13256. stream_context_set_option()
  13257. stream_context_set_params()
  13258. stream_copy_to_stream()
  13259. stream_filter_append()
  13260. stream_filter_prepend()
  13261. stream_filter_register()
  13262. stream_get_filters()
  13263. stream_get_line()
  13264. stream_get_meta_data()
  13265. stream_get_transports()
  13266. stream_get_wrappers()
  13267. stream_register_wrapper()
  13268. stream_select()
  13269. stream_set_blocking()
  13270. stream_set_timeout()
  13271. stream_set_write_buffer()
  13272. stream_socket_accept()
  13273. stream_socket_client()
  13274. stream_socket_get_name()
  13275. stream_socket_server()
  13276. stream_wrapper_register()
  13277. addcslashes()
  13278. addslashes()
  13279. bin2hex()
  13280. chop()
  13281. chr()
  13282. chunk_split()
  13283. convert_cyr_string()
  13284. count_chars()
  13285. crc32()
  13286. crypt()
  13287. echo()
  13288. explode()
  13289. fprintf()
  13290. get_html_translation_table()
  13291. hebrev()
  13292. hebrevc()
  13293. html_entity_decode()
  13294. htmlentities()
  13295. htmlspecialchars()
  13296. implode()
  13297. join()
  13298. levenshtein()
  13299. localeconv()
  13300. ltrim()
  13301. md5_file()
  13302. md5()
  13303. metaphone()
  13304. money_format()
  13305. nl_langinfo()
  13306. nl2br()
  13307. number_format()
  13308. ord()
  13309. parse_str()
  13310. print()
  13311. printf()
  13312. quoted_printable_decode()
  13313. quotemeta()
  13314. rtrim()
  13315. setlocale()
  13316. sha1_file()
  13317. sha1()
  13318. similar_text()
  13319. soundex()
  13320. sprintf()
  13321. sscanf()
  13322. str_ireplace()
  13323. str_pad()
  13324. str_repeat()
  13325. str_replace()
  13326. str_rot13()
  13327. str_shuffle()
  13328. str_split()
  13329. str_word_count()
  13330. strcasecmp()
  13331. strchr()
  13332. strcmp()
  13333. strcoll()
  13334. strcspn()
  13335. strip_tags()
  13336. stripcslashes()
  13337. stripos()
  13338. stripslashes()
  13339. stristr()
  13340. strlen()
  13341. strnatcasecmp()
  13342. strnatcmp()
  13343. strncasecmp()
  13344. strncmp()
  13345. strpos()
  13346. strrchr()
  13347. strrev()
  13348. strripos()
  13349. strrpos()
  13350. strspn()
  13351. strstr()
  13352. strtok()
  13353. strtolower()
  13354. strtoupper()
  13355. strtr()
  13356. substr_compare()
  13357. substr_count()
  13358. substr_replace()
  13359. substr()
  13360. trim()
  13361. ucfirst()
  13362. ucwords()
  13363. vprintf()
  13364. vsprintf()
  13365. wordwrap()
  13366. sybase_affected_rows()
  13367. sybase_close()
  13368. sybase_connect()
  13369. sybase_data_seek()
  13370. sybase_deadlock_retry_count()
  13371. sybase_fetch_array()
  13372. sybase_fetch_assoc()
  13373. sybase_fetch_field()
  13374. sybase_fetch_object()
  13375. sybase_fetch_row()
  13376. sybase_field_seek()
  13377. sybase_free_result()
  13378. sybase_get_last_message()
  13379. sybase_min_client_severity()
  13380. sybase_min_error_severity()
  13381. sybase_min_message_severity()
  13382. sybase_min_server_severity()
  13383. sybase_num_fields()
  13384. sybase_num_rows()
  13385. sybase_pconnect()
  13386. sybase_query()
  13387. sybase_result()
  13388. sybase_select_db()
  13389. sybase_set_message_handler()
  13390. sybase_unbuffered_query()
  13391. tidy_access_count()
  13392. tidy_clean_repair()
  13393. tidy_config_count()
  13394. tidy_diagnose()
  13395. tidy_error_count()
  13396. tidy_get_body()
  13397. tidy_get_config()
  13398. tidy_get_error_buffer()
  13399. tidy_get_head()
  13400. tidy_get_html_ver()
  13401. tidy_get_html()
  13402. tidy_get_output()
  13403. tidy_get_release()
  13404. tidy_get_root()
  13405. tidy_get_status()
  13406. tidy_getopt()
  13407. tidy_is_xhtml()
  13408. tidy_load_config()
  13409. tidy_parse_file()
  13410. tidy_parse_string()
  13411. tidy_repair_file()
  13412. tidy_repair_string()
  13413. tidy_reset_config()
  13414. tidy_save_config()
  13415. tidy_set_encoding()
  13416. tidy_setopt()
  13417. tidy_warning_count()
  13418. token_get_all()
  13419. token_name()
  13420. base64_decode()
  13421. base64_encode()
  13422. get_meta_tags()
  13423. http_build_query()
  13424. parse_url()
  13425. rawurldecode()
  13426. rawurlencode()
  13427. urldecode()
  13428. urlencode()
  13429. doubleval()
  13430. empty()
  13431. floatval()
  13432. get_defined_vars()
  13433. get_resource_type()
  13434. gettype()
  13435. import_request_variables()
  13436. intval()
  13437. is_array()
  13438. is_bool()
  13439. is_callable()
  13440. is_double()
  13441. is_float()
  13442. is_int()
  13443. is_integer()
  13444. is_long()
  13445. is_null()
  13446. is_numeric()
  13447. is_object()
  13448. is_real()
  13449. is_resource()
  13450. is_scalar()
  13451. is_string()
  13452. isset()
  13453. print_r()
  13454. serialize()
  13455. settype()
  13456. strval()
  13457. unserialize()
  13458. unset()
  13459. var_dump()
  13460. var_export()
  13461. vpopmail_add_alias_domain_ex()
  13462. vpopmail_add_alias_domain()
  13463. vpopmail_add_domain_ex()
  13464. vpopmail_add_domain()
  13465. vpopmail_add_user()
  13466. vpopmail_alias_add()
  13467. vpopmail_alias_del_domain()
  13468. vpopmail_alias_del()
  13469. vpopmail_alias_get_all()
  13470. vpopmail_alias_get()
  13471. vpopmail_auth_user()
  13472. vpopmail_del_domain_ex()
  13473. vpopmail_del_domain()
  13474. vpopmail_del_user()
  13475. vpopmail_error()
  13476. vpopmail_passwd()
  13477. vpopmail_set_user_quota()
  13478. w32api_deftype()
  13479. w32api_init_dtype()
  13480. w32api_invoke_function()
  13481. w32api_register_function()
  13482. w32api_set_call_method()
  13483. wddx_add_vars()
  13484. wddx_deserialize()
  13485. wddx_packet_end()
  13486. wddx_packet_start()
  13487. wddx_serialize_value()
  13488. wddx_serialize_vars()
  13489. utf8_decode()
  13490. utf8_encode()
  13491. xml_error_string()
  13492. xml_get_current_byte_index()
  13493. xml_get_current_column_number()
  13494. xml_get_current_line_number()
  13495. xml_get_error_code()
  13496. xml_parse_into_struct()
  13497. xml_parse()
  13498. xml_parser_create_ns()
  13499. xml_parser_create()
  13500. xml_parser_free()
  13501. xml_parser_get_option()
  13502. xml_parser_set_option()
  13503. xml_set_character_data_handler()
  13504. xml_set_default_handler()
  13505. xml_set_element_handler()
  13506. xml_set_end_namespace_decl_handler()
  13507. xml_set_external_entity_ref_handler()
  13508. xml_set_notation_decl_handler()
  13509. xml_set_object()
  13510. xml_set_processing_instruction_handler()
  13511. xml_set_start_namespace_decl_handler()
  13512. xml_set_unparsed_entity_decl_handler()
  13513. xmlrpc_decode_request()
  13514. xmlrpc_decode()
  13515. xmlrpc_encode_request()
  13516. xmlrpc_encode()
  13517. xmlrpc_get_type()
  13518. xmlrpc_parse_method_descriptions()
  13519. xmlrpc_server_add_introspection_data()
  13520. xmlrpc_server_call_method()
  13521. xmlrpc_server_create()
  13522. xmlrpc_server_destroy()
  13523. xmlrpc_server_register_introspection_callback()
  13524. xmlrpc_server_register_method()
  13525. xmlrpc_set_type()
  13526. xslt_create()
  13527. xslt_errno()
  13528. xslt_error()
  13529. xslt_free()
  13530. xslt_process()
  13531. xslt_set_base()
  13532. xslt_set_encoding()
  13533. xslt_set_error_handler()
  13534. xslt_set_log()
  13535. xslt_set_sax_handler()
  13536. xslt_set_sax_handlers()
  13537. xslt_set_scheme_handler()
  13538. xslt_set_scheme_handlers()
  13539. yaz_addinfo()
  13540. yaz_ccl_conf()
  13541. yaz_ccl_parse()
  13542. yaz_close()
  13543. yaz_connect()
  13544. yaz_database()
  13545. yaz_element()
  13546. yaz_errno()
  13547. yaz_error()
  13548. yaz_get_option()
  13549. yaz_hits()
  13550. yaz_itemorder()
  13551. yaz_present()
  13552. yaz_range()
  13553. yaz_record()
  13554. yaz_scan_result()
  13555. yaz_scan()
  13556. yaz_schema()
  13557. yaz_search()
  13558. yaz_set_option()
  13559. yaz_sort()
  13560. yaz_syntax()
  13561. yaz_wait()
  13562. yp_all()
  13563. yp_cat()
  13564. yp_err_string()
  13565. yp_errno()
  13566. yp_first()
  13567. yp_get_default_domain()
  13568. yp_master()
  13569. yp_match()
  13570. yp_next()
  13571. yp_order()
  13572. zip_close()
  13573. zip_entry_close()
  13574. zip_entry_compressedsize()
  13575. zip_entry_compressionmethod()
  13576. zip_entry_filesize()
  13577. zip_entry_name()
  13578. zip_entry_open()
  13579. zip_entry_read()
  13580. zip_open()
  13581. zip_read()
  13582. gzclose()
  13583. gzcompress()
  13584. gzdeflate()
  13585. gzencode()
  13586. gzeof()
  13587. gzfile()
  13588. gzgetc()
  13589. gzgets()
  13590. gzgetss()
  13591. gzinflate()
  13592. gzopen()
  13593. gzpassthru()
  13594. gzputs()
  13595. gzread()
  13596. gzrewind()
  13597. gzseek()
  13598. gztell()
  13599. gzuncompress()
  13600. gzwrite()
  13601. readgzfile()
  13602. zlib_get_coding_type()
  13603. ;
  13604. ;
  13605. ; -----------------------------------------------------------------------------
  13606. ;  user-defined templates
  13607. ; -----------------------------------------------------------------------------
  13608.